0

我有一个网址,例如http://www.example.com/wall/post/1234568929842184
现在我想从我的 javascript 或 jquery 的网址中获取 post/ 之后的数字。

4

1 回答 1

0

看看这里

在你的情况下:

var href = window.location.href;
window.alert(href.substr(href.lastIndexOf('/') + 1));
于 2013-04-14T06:30:21.423 回答