继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

jQuery生成QRCode二维码

这个名字没人起
关注TA
已关注
手记 271
粉丝 19
获赞 92

         

<!DOCTYPE html><html><head>  <meta charset="utf-8">  <title>jQuery生成QRCode二维码</title></head><body><!-- 存放二维码 --><div id="qrcode-1"></div><!-- 存放二维码 --><div id="qrcode-2"></div><!-- 引入jQuery文件 --><script src="https://cdn.bootcss.com/jquery/3.0.0/jquery.min.js"></script><!-- 引入jQuery.qrcode文件 --><script src="https://cdn.bootcss.com/jquery.qrcode/1.0/jquery.qrcode.min.js"></script><script>//第一种方法$('#qrcode-1').qrcode("This is the first method");//第二种方法$('#qrcode-2').qrcode({  width: 128,	//二维码宽度  height: 128,	//二维码高度  text: "This is the second method"		//字符串内容});</script></body></html>



打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP