我正在尝试使用javascript获取网址值,到目前为止,我只能获得纯数字,而不是字母或字母的混合数字。我找不到任何一个函数的工作示例,它允许检索带有字母的数字,只是数字。我没有使用任何非字母数字字符。我想要传递的示例值是“42p316041610751874cm83p2306600132141”。
function getUrlVars()
{
var vars = [], hash;
var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
for(var i = 0; i < hashes.length; i++)
{
hash = hashes[i].split('=');
vars.push(hash[0]);
vars[hash[0]] = hash[1];
}
return vars;
}
var first = getUrlVars()["test"];
任何帮助都会很棒。感谢。
答案 0 :(得分:5)
以上是上述两个答案的精简版本:
function gup (name) {
name = RegExp ('[?&]' + name.replace (/([[\]])/, '\\$1') + '=([^&#]*)');
return (window.location.href.match (name) || ['', ''])[1];
}
更容易打字,更容易处理,恕我直言更容易阅读。 YMMV
答案 1 :(得分:3)
我使用这个功能,它摇滚。我不记得我从哪里拿过它,但这是一个很好的:
function gup(name) {
name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
var regexS = "[\\?&]" + name + "=([^&#]*)";
var regex = new RegExp(regexS);
var results = regex.exec(window.location.href);
if (results == null)
return "";
else
return results[1];
}
如果您有http://www.exmaple.com/path?p1=lkjsd234&p2=klsjd987
之类的网址,则可以使用:
alert(gup('p1')); // shows 'lkjsd234';
答案 2 :(得分:0)
您的代码看起来应该可行我如果有帮助我会使用下面的函数
function getParam(name){
name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
var regexS = "[\\?&]"+name+"=([^&#]*)";
var regex = new RegExp( regexS );
var results = regex.exec (window.location.href);
if (results == null)
return "";
else
return results[1];
}
var first = getParam("test");
答案 3 :(得分:0)
你的方法应该有效。这是我的比较版本:
var o = {
keys: [ ],
values: [ ]
}
/*
You could just use the window#location#search value to get the query sub-String of the currently loaded URL
var q = window.location.search.substring(1) ;
For now we'll use a query String from a Google search for "MDN window location"
*/
q = "q=mdn+window+location&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:de:official&client=firefox-a"
for( var i = 0 , a = q.split("&"), p ; i < a.length ; i++ ) {
p = a[i] ;
if( ( b = p.split("=") ) != null ) {
o.keys[i] = b[0] ;
o.values[i] = b[1] ;
}
}
console.log("(!!) o: " + o.toSource( ) ) ;