LoginSignup
12
12

More than 5 years have passed since last update.

メモ:HTMLでiPhoneのカメラロールを参照

Posted at
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0, user-scalable=no">
<title>camera</title>
</head>
<body>

<form method="post" enctype="multipart/form-data">
    <input type="file" id="cameraImage" name="upload_image" accept="image/*" capture="camera">
</form>


<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script>

$(document).ready(function(){
    // 画像を選択
    $('#cameraImage').bind('change', inputFileHandler);
});

// 画像選択時イベント
function inputFileHandler(e) {
    console.log("inputFileHandler", e);
}

</script>

</body>
</html>
12
12
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
12
12