扫码的功能我按照h5的示例做了出来但是需要打开闪光灯的功能;我按照其他的问答我写成
mui.plusReady(function() {
skd.addEventListener('tap', function() {
if($(this).attr("class") == "fbt") {
$(this).addClass("in");
$(this).html("关闭闪光灯");
if(FlashControl) FlashControl.open();
} else {
$(this).removeClass("in");
$(this).html("打开闪光灯");
if(FlashControl) FlashControl.close();
}
});
});
写成这样之后闪光灯打开了但是扫码的功能不好使了 求指教该如何实现能扫码能打开闪光灯
1 个回复
maojinhua - hhh
示例楼主在哪看的