2,设置或获取闭扰整个 URL 为字符串。
3,设置或获取与 URL 关联的端口号码。
4,设置或获取 URL 的协议部分。
6,设置或获取 location 或 URL 的 hostname 和 port 号码。
7,获取 href 属性中跟在问号后面的部分。
8,用轿唯旦来得到当前网页的域名
设置或获取对象指定的文件名或路径搭汪。<竖枝磨script>
alert(window.location.pathname)
</script>
设置或获取整个 URL 为字符串。
<script>
alert(window.location.href)
</script>
设置或获取与 URL 关联的端口号码。
<script>
alert(window.location.port)
</script>
设置或获取 URL 的协议部分。
<script>
alert(window.location.protocol)
</script>
设置或获取 href 属性中在井号“#”后面的分段。
<script>
alert(window.location.hash)
</script>
设置或获取 location 或 URL 的 hostname 和 port 号码。
<script>
alert(window.location.host)
</script>
设置或获取 href 属性中跟在问号后面的部分。
<余斗script>
alert(window.location.search)
</script>
需要准胡拿备的材枯碰料分别有:电脑、html编辑器、浏览器。
1、首先,打开html编辑器,新建html文件,没做谈例如:index.html。
2、在index.html中的<script>标签,输入js代码:var a = location.href.split('/')document.body.innerText = a[a.length - 1]。
3、浏览器运行index.html页面,此时成功获取到当前页面文件名index.html并打印了出来。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)