host = window.location.host
host2=document.domain
if(host!="xxx.com") alert("illegal")
点击公众号设置,功能设置然后把相关域名网址分别填入域名1和域名2的方框里,点击确定即可。1、js安全域名是指你所拥有的一个网站域名,这个域名可以放置你想实现的js任何效果从而接口调用,设置JS接口安全域名后,公众号开发者可在该域名下调用微信开放的JS接口。2、填写的JS接口安全域名要求是一级或一级以上域名,须通过ICP备案的验证,可填写三个域名,一个月内最多可修改三次域名,任意一个域名变更记为一次怎样填写如域名一baidu.com权限有服务器配置。3、安全域名设置是根据互联网管理相关规定,即日起在微信朋友圈内分享的域名,请在2014年12月31日前完成ICP备案,以避免分享频率受到限制而js接口所涉及到的域名也需符合这项规定。今天给各位朋友介绍两种js获取当前域名代码如下
//获取当前域名
1、window.location.host
2、document.domain
//获取当前页面地址
url
=
window.location.href
例子
代码如下
<script
language="javascript">
//获取域名
host
=
window.location.host
host2=document.domain
//获取页面完整地址
url
=
window.location.href
document.write("<br>host="+host)
document.write("<br>host2="+host2)
document.write("<br>url="+ur(www.45it.net)l)
</script>
补充:
获取当前域名信息
代码如下
thisTLoc
=
top.location.href
thisPLoc
=
parent.document.location
thisTHost
=
top.location.hostname
thisHost
=
location.hostname
strwrite
=
”
thisTLoc:
["
+
thisTLoc
+
"]”
strwrite
+=
”
thisPLoc:
["
+
thisPLoc
+
"]”
strwrite
+=
”
thisTHost:
["
+
thisTHost
+
"]”
strwrite
+=
”
thisHost:
["
+
thisHost
+
"]”
document.write(
strwrite
)