3

我只想将我的 URL 编号作为返回值。目前我使用:

alert(document.URL);

获取整个 URL。但是有没有其他简单的解决方案可以只从我的 URL 中获取 ID 号?我也在这个项目中使用了 jQuery 和 PHP。

4

2 回答 2

3

var numbers = document.URL.match(/\d+/g)将返回 URL 中的所有数字(例如对于此线程)document.URL.match(/\d+/g)=>["19570840"]

于 2013-10-24T16:01:31.417 回答
2
alert(document.URL.match(/\d+/g));

简单的。我会把它放在一个小提琴中,但是呃,jsFiddle 在他们的 url 中没有任何数字,所以。

于 2013-10-24T16:00:54.007 回答