如何使用设备的面向用户的相机“无法从设备浏览”并使用javascript或jquery拍照。 我知道html代码是:
<input id="q1" type="file" name="image" accept="image/*" capture="user">
我需要使用jQuery或javascript而不是html代码来添加接受和捕获属性,我尝试了以下操作,但不起作用:
$('#q1').prop("accept","image/*");
$('#q1').prop("capture","user");