标签:
方法一:
<style type="text/css">
.eweima{
width:200px; height:200px; margin:auto;
}
</style>
<div class="eweima">
<img src="http://localhost/xianhewang/index.php?a=user&user_id=82 width="200" height="200" alt="二维码"/>
</div>
上面是所有代码,创建一个小工具把代码复制到里面就好了,代码中的 200 为二维码的高宽,高宽一定要一样,你可以根据自己的边栏宽度更改下。这套代码是利用了 google 的 API 实现的,所以速度上肯定是占优势的了。
--------------------------------------------------------------------------------
方法二:
一般网页中也可使用下面的代码:我用html测试OK。
<script>
thisURL = document.URL;
strwrite = "<img src=‘https://chart.googleapis.com/chart?cht=qr&chs=150x150&choe=UTF-8&chld=L|4&chl=" + thisURL + "‘ width=‘150‘ height=‘150‘ alt=‘QR 码‘ />";
document.write( strwrite );
</script>
这个用的PHP代码中也可以使用下面的代码:
<img src=" the_permalink();?>" width="150" height="150" alt="QR 码" />
希望对大家能用到。
——————————————————————————————————————————
织梦系统可直接用下面带边框的:
<!--二维码生成 -->
<div class="zly1"><div class="zlx1">
<dl class="t11 l11">
<dt class=‘light‘><strong>本页二维码</strong></dt>
<dd class=‘light‘>
<ul class="nb1">
<style type="text/css">
.eweima{
width:200px;
height:200px;
margin:auto;
}
</style>
<div class="eweima">
<script type="text/javascript">
document.write("<img src=\"https://chart.googleapis.com/chart?cht=qr&chs=500x500&choe=UTF-8&chld=L|2&chl=");
document.write(window.location.href);
document.write("\" width=\"200\" height=\"200\" alt=\"二维码\"/>");
</script>
</ul></dd>
</dl>
</div> </div>
<!--二维码生成//-->
<!DOCTYPE html> |
<html> |
<head> |
<title>basic example</title> |
</head> |
<body> |
<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 type="text/javascript" src="../src/jquery.qrcode.js"></script> |
<script type="text/javascript" src="../src/qrcode.js"></script> |
|
<p>Render in table</p> |
<div id="qrcodeTable"></div> |
<p>Render in canvas</p> |
<div id="qrcodeCanvas"></div> |
<script> |
//jQuery(‘#qrcode‘).qrcode("this plugin is great"); |
jQuery(‘#qrcodeTable‘).qrcode({ |
render : "table", |
text : "http://jetienne.com" |
}); |
jQuery(‘#qrcodeCanvas‘).qrcode({ |
text : "http://jetienne.com" |
}); |
</script> |
|
</body> |
</html> |
标签:
原文地址:http://www.cnblogs.com/brice/p/5340666.html