function getParameterByName(name) {
var match = RegExp('[?&]' + name + '=([^&]*)')
.exec(window.location.search);
return match ?
decodeURIComponent(match[1].replace(/\+/g, ' '))
: null;
}
Javascript获取地址栏参数
程序员文章站
2024-02-18 08:31:04
...
代码如下:
转载于:https://www.cnblogs.com/olartan/archive/2011/03/08/1977299.html