在 JavaScript 中使用 URI

发布于 2024-12-21 20:45:37 字数 240 浏览 1 评论 0原文

我有一个如下所示的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

天荒地未老 2024-12-28 20:45:37

试试这个:

alert( location.protocol + "//" + location.host )

Try this:

alert( location.protocol + "//" + location.host )

你的心境我的脸 2024-12-28 20:45:37
location.protocol + '//' + location.host

并且,如果需要,您还可以拥有以下其他属性:

  • hash
  • search - url 查询字符串
  • hostname - 仅主机名(不带端口)
  • port - 仅端口号
  • pathname - 本地 url
location.protocol + '//' + location.host

And, if you want, you have these other properties:

  • hash
  • search - url querystring
  • hostname - only the hostname (without port)
  • port - only the port number
  • pathname - the local url
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文