以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 扫码 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=178201) |
||||
-- 作者:qazlinle6 -- 发布时间:2022/6/23 9:33:00 -- 扫码
微信上扫码,可不可以扫了一个又自动进入扫码页又扫
|
||||
-- 作者:有点蓝 -- 发布时间:2022/6/23 9:38:00 -- 11 [此贴子已经被作者于2022/6/23 9:40:32编辑过]
|
||||
-- 作者:qazlinle6 -- 发布时间:2022/6/23 9:41:00 -- ?????? |
||||
-- 作者:有点蓝 -- 发布时间:2022/6/23 9:41:00 -- 可以这样 wx.ready(function () { document.getElementById(\'scan\').onclick = function () { wx.scanQRCode({ needResult: 1, scanType: [\'qrCode\',\'barCode\'], success: function (res) { var code = res.resultStr; if (code.indexOf(",") >= 0) { code = code.split(",")[1]; } document.getElementById(\'number\').value =code ; document.getElementById(\'scan\').click(); //马上触发点击事件 } }); }; }); |