从javascript中的网址路径中提取参数

时间:2019-10-02 03:38:12

标签: javascript

我想提取一部分网址路径,但我不知道该怎么做。 我想从这样的路径获取值(3252):

/forums/0-3252-1-1-my-topic-title.htm

我该怎么做?

谢谢

1 个答案:

答案 0 :(得分:0)

如果要使用URL,可以使用一个功能强大的工具进行回复,即 JavaScript窗口位置

window.location对象可用于获取当前页面地址(URL)。

window.location对象具有许多属性或方法。

一些例子:

  • window.location.href返回当前页面的href(URL)

  • window.location.hostname返回虚拟主机的域名

  • window.location.pathname返回当前页面的路径和文件名

  • window.location.protocol返回使用的Web协议(http:或https :)

  • window.location.assign()加载新文档

示例:

显示当前页面的href(URL)

<script>
    alert(window.location.href);
</script>

点击链接以了解更多信息:Window Location