我目前正在使用Visual Studio处理我的项目,我需要一个允许按下按钮打开相机的功能。我有一些以前项目的代码,但它们现在似乎不起作用。以下是我的代码。
JS:
function getImage() {
// Retrieve image file location from specified source
navigator.camera.getPicture(uploadPhoto,
function (message) { alert('get picture failed'); },
{ quality: 10, destinationType: navigator.camera.DestinationType.FILE_URI, sourceType: navigator.camera.PictureSourceType.PHOTOLIBRARY }
);
}
HTML:
<form id="buyforme">
<img id="myimg" height="100">
<input type="button" name="selectimg" id="selectimg" onclick="getImage();" value="Take a picture of this item :)">
请告知&amp;让我知道你还需要知道什么!谢谢大家!
答案 0 :(得分:0)
要访问手机摄像头以获取photo
或video
android
或ios
,您可以像这样使用input[type="file"]
:
获取照片
<input type="file" accept="image/*" capture="camera">
获取视频
<input type="file" name="video" accept="video/*" capture="environment">
用于打开相机:
<input type="file" name="image" accept="image/*" capture="environment">
对于自拍相机(正面):
<input type="file" name="image" accept="image/*" capture="user">
<强> Source 强>