这里是引入WP的本地Jquery库做的例子。多了就不说了,直接上代码:
");}
PS:
jquery的版本应一致…
/js/jquery.min.js
可替换为本地的绝对地址…
标签: javascript
利用Google API为网页添加二维码
现在智能机越来越普及了,网站对手机的支持也越来越重要,二维码可以说是最简单方便的向手机传送消息的方法,特别是传输网页URL。比如//www.longsays.com/对应的二维码为:
js获取当前页面的网址域名地址
1.获取当前完整网址
thisURL = document.URL;
thisHREF = document.location.href;
thisSLoc = self.location.href;
thisDLoc = document.location;
strwrite = ” thisURL: [” + thisURL + “]”
strwrite += ” thisHREF: [” + thisHREF + “]”
strwrite += ” thisSLoc: [” + thisSLoc + “]”
strwrite += ” thisDLoc: [” + thisDLoc + “]”
document.write( strwrite );
继续阅读js获取当前页面的网址域名地址