判断Jquery库是否成功引入,如果没有成功则引入本地Jquery库

这里是引入WP的本地Jquery库做的例子。多了就不说了,直接上代码:


");}


PS:
jquery的版本应一致…
/js/jquery.min.js可替换为本地的绝对地址…

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获取当前页面的网址域名地址