美文网首页
再次整理:一句话扫码接口

再次整理:一句话扫码接口

作者: sysdzw | 来源:发表于2022-03-15 20:41 被阅读0次
    <a href="//996315.com/api/scan/?redirect_uri=修改成你要接收扫码结果页面的url地址">Scan</a>
    <script type="text/javascript">
    if (location.href.indexOf("qrresult=")>-1) alert(decodeURIComponent(location.href.split("qrresult=")[1]));
    </script>
    

    如果当前网址有多个参数或者#这样的锚点,建议修改为:

    <a href="javascript:window.open('//996315.com/api/scan/?redirect_uri=' + encodeURIComponent(location.href), '_self');">Scan</a>
    <script type="text/javascript">
    if (location.href.indexOf("qrresult=")>-1) alert(decodeURIComponent(location.href.split("qrresult=")[1]));
    </script>
    

    如果你要扫的是条形码,那么建议修改为:

    <a href="javascript:window.open('//996315.com/api/scan/?redirect_uri=' + encodeURIComponent(location.href), '_self');">Scan</a>
    <script type="text/javascript">
    if (location.href.indexOf("qrresult=")>-1) alert(location.href.split("%2C")[1]);
    </script>
    
    图片.png 图片.png

    相关文章

      网友评论

          本文标题:再次整理:一句话扫码接口

          本文链接:https://www.haomeiwen.com/subject/ulfmdrtx.html