Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只想将我的 URL 编号作为返回值。目前我使用:
alert(document.URL);
获取整个 URL。但是有没有其他简单的解决方案可以只从我的 URL 中获取 ID 号?我也在这个项目中使用了 jQuery 和 PHP。
var numbers = document.URL.match(/\d+/g)将返回 URL 中的所有数字(例如对于此线程)document.URL.match(/\d+/g)=>["19570840"]
var numbers = document.URL.match(/\d+/g)
document.URL.match(/\d+/g)
["19570840"]
alert(document.URL.match(/\d+/g));
简单的。我会把它放在一个小提琴中,但是呃,jsFiddle 在他们的 url 中没有任何数字,所以。