wps怎么用js获取链接地址

JavaScript024

wps怎么用js获取链接地址,第1张

可以使用 JavaScript 的 window.location 对象来获取链接地址,该对象包括以下属性:

- hash:返回 URL 中的哈希部分(以 # 开头)

- host:返回 URL 中的主机名和端口号

- hostname:返回 URL 中的主机名

- href:返回整个 URL(包括协议名,域名,端口号,路径,查询字符串等)

- pathname:返回 URL 中的路径

- port:返回 URL 中的端口号

- protocol:返回 URL 中的协议名

- search:返回 URL 中的查询字符串(以 ? 开头)

今天给各位朋友介绍两种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

)