大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
方法 步骤如下:
临安网站制作公司哪家好,找创新互联!从网页设计、网站建设、微信开发、APP开发、响应式网站等网站项目制作,到程序开发,运营维护。创新互联从2013年成立到现在10年的时间,我们拥有了丰富的建站经验和运维经验,来保证我们的工作的顺利进行。专注于网站建设就选创新互联。
打开开发工具。比如editplus、dw等
新建一个html文件,写入脚本标签
script language="javascript" type="text/javascript"
!--
//--
/script
js代码必须写入好改标签中。
3.想要获取web的主机名和端口号就必须使用window下的location对象的属性才行的。
4.获取主机域名:
location.hostname
获取端口号
location.port
具体实现的代码:
function f1(){
alert(window.location.hostname);
alert(window.location.port);
}
麻烦提问的时候尽量说明的清楚一些。给的网址是具体某个页面呢,还是网站域名?就理解成某个网页吧,就算是域名的话也只是多几个循环遍历。
得到这个网址访问的所有域名?应该是和该页面产生链接的域名吧。
说一下解决的思路,首先获取该页面的html代码,再用正则表达式取出所有的超链接,并截取域名部分,最后过滤重复的域名,得到该网址访问的所有域名。
input type="text" style=" width:300px;" name="new" id=new"
script
var nurl = document.referrer;//来源url
document.URL //获取当前域名
document.title//获取当前页面标题
document.getElementById('new').innerHTML = nurl;/script
我是爱分享资源网的站长,如果你觉得不错请访问下我的网站,谢谢了!
今天给各位朋友介绍两种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("brhost="+host)
document.write("brhost2="+host2)
document.write("brurl="+ur()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
);