在 JavaScript 中使用 URI
我有一个如下所示的 URL:
http://localhost:1692/fa/Help.aspx#Help
下面的代码返回:
alert(document.URL);
我只想获取 http://localhost:第1692章
如何使用 jQuery 或 JavaScript 获取它?
I have a URL like below :
http://localhost:1692/fa/Help.aspx#Help
the code below returns that :
alert(document.URL);
I only want to get the http://localhost:1692
part of this URL.
How can I get it with jQuery or JavaScript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
alert( location.protocol + "//" + location.host )
Try this:
alert( location.protocol + "//" + location.host )
并且,如果需要,您还可以拥有以下其他属性:
hash
search
- url 查询字符串hostname
- 仅主机名(不带端口)port
- 仅端口号pathname
- 本地 urlAnd, if you want, you have these other properties:
hash
search
- url querystringhostname
- only the hostname (without port)port
- only the port numberpathname
- the local url