Google API生成当前页面二维码

  • A+
所属分类:前端

二维码很方便,当前页面二维码可以把电脑上的内容转移到手机上。实现方法很多,常用的有开放API,JavaScript,和PHP的qrcode函数。

Google API

直接调用

<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='网址URL 二维码生成' />"; 
document.write( strwrite ); 
</script>

WordPress版

<img src="https://chart.googleapis.com/chart?cht=qr&chs=150x150&choe=UTF-8&chld=L|4&chl=<?php the_permalink(); ?>" width="150" height="150" alt="QR码"/>
weinxin
独角兽驿站
公众号

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: