使用query.qrcode.min.js在网页上生成二维码

来源:互联网 发布:企业网管软件下载 编辑:程序博客网 时间:2024/06/13 04:36

<!DOCTYPE html><html><head><script type="text/javascript" src="jquery.min.js"></script><script type="text/javascript" src="jquery.qrcode.min.js"></script><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"><script>$(document).ready(function(){  $("#qrcode").qrcode("http://blog.csdn.net/ljh_learn_from_base");});</script></head><body><p>在网页上生成的二维码如下:</p><div id="qrcode"></div></body></html>