function onmarked(type, result) {
var text = '未知: ';
switch(type) {
case plus.barcode.QR:
text = 'QR: ';
break;
case plus.barcode.EAN13:
text = 'EAN13: ';
break;
case plus.barcode.EAN8:
text = 'EAN8: ';
break;
}
window.location.href = 'scan.html?result' + result;
}
我本来是想扫描成功之后跳转到指定路径 后来发现确实跳了页面 但是扫描的页面一直未关闭。。请指教 谢谢~~~~
不闻余物Ao (作者)
已经解决了 我创建了两个实例 所以当时只关掉了一个 还有一个没有关掉
2016-07-21 17:07