chenmo-xpw

 

一、js 二维码生成demo

①、先下载 js qrcode 库  

 

②、使用极其简单  

<!DOCTYPE html>
<html>
<head>
<title>qrcode demo</title>

</head>
<body>

<div id="qrcode"></div>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<script type="text/javascript" src="jquery.qrcode.min.js"></script>
<script>

jQuery(function(){
    jQuery(\'#qrcode\').qrcode("http://taobao.com");
})
</script>

</body>
</html> 

二、参考文献

https://github.com/jeromeetienne/jquery-qrcode

分类:

技术点:

相关文章:

  • 2021-12-27
  • 2021-12-27
  • 2021-10-18
  • 2021-12-27
  • 2021-12-27
  • 2021-12-09
  • 2021-12-09
猜你喜欢
  • 2021-12-09
  • 2020-06-03
  • 2021-12-27
  • 2021-12-27
  • 2018-05-04
相关资源
相似解决方案