博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
用JS获得当前页面详细地址
阅读量:6621 次
发布时间:2019-06-25

本文共 620 字,大约阅读时间需要 2 分钟。

用JS获得当前页面详细地址

[ 2006-6-4 19:00:50 | By: sOso ]
正文开始:

设置或获取对象指定的文件名或路径。

<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>

转载于:https://www.cnblogs.com/hanwenhua/articles/3473200.html

你可能感兴趣的文章
[Ubuntu] fg、bg让你的进程在前后台之间切换
查看>>
二维数组与类的定义_DAY06
查看>>
ROC曲线(receiver-operating-characteristic curve)-阈值评价标准(转)
查看>>
Swift 表达式
查看>>
FFmpeg(8)-打开音视频解码器,配置解码器上下文(avcodec_find_decoder()、avcodec_alloc_context3())...
查看>>
Javascript基础恶补
查看>>
andriod自定义视图
查看>>
linux下vim更改注释颜色
查看>>
在SSL / https下托管SignalR
查看>>
Using JRuby with Maven
查看>>
poj 3308 (最大流)
查看>>
Netty了解与小试
查看>>
醒醒吧少年,只用Cucumber不能帮助你BDD
查看>>
众安质量学堂文章汇总
查看>>
AsyncHttpSupport并发发送请求
查看>>
一名女程序员对iOS的想法
查看>>
Cloud Native未来值得关注的方向:Service Mesh简介
查看>>
西班牙现新型电费退款网络诈骗 侨胞需谨防上当
查看>>
JVM新生代和老年代配置原则
查看>>
昆明滇池水质达30年来最好 百名“市民河长”守卫“母亲河”
查看>>