mycode.php 852 B

1234567891011121314151617181920212223
  1. <?php require_once 'header.php' ?>
  2. <header class="aui-bar aui-bar-nav baiset">
  3. <a onclick="tiao(&#39;/mobile/&#39;)" class="aui-pull-left aui-btn">
  4. <span style="color:#fff" class="aui-iconfont c-b"><返回</span>
  5. </a>
  6. <div class="aui-title">银行卡</div>
  7. </header>
  8. <script src="/js/qrcode.js"></script>
  9. <div id="qrcode" style="margin-left:auto; margin-right:auto; margin-top:50px; width:120px;">
  10. </div>
  11. <script>
  12. window.onload =function(){
  13. var qrcode = new QRCode(document.getElementById("qrcode"), {
  14. width : 120,//设置宽高
  15. height : 120
  16. });
  17. qrcode.makeCode("<?php echo $imgfurl;?>");
  18. document.getElementById("send").onclick =function(){
  19. qrcode.makeCode(document.getElementById("getval").value);
  20. }
  21. }
  22. </script>
  23. <?php require_once 'footer.php' ?>