微信 input 照相机 呼出

<input type="file" name="file" accept="image/*" class="btn get-pictrue">
// #########
// ios10 加了这个选择不会出现相册
// androud 不加这个不会有照相功能
// 兼容 设备代码
var u = navigator.userAgent;
var isAndroid = u.indexOf('Android') > -1 || u.indexOf('Adr') > -1;
if (isAndroid) {
    domElem.find('.get-pictrue').setAttr('capture', 'camera');
}
// #########
// <input type="file" name="file" accept="image/*" capture="camera" class="btn get-pictrue">
原文地址:https://www.cnblogs.com/Silababy/p/7133693.html