我能够从具有以下结构的 URL 获取数据 -
http://mydomain.com/test.php?word=hello
使用 PHP 我会使用以下
$word = $_GET["word"];
谁能告诉我是否有可能实现相同的目标但使用JavaScript
?
谢谢
我能够从具有以下结构的 URL 获取数据 -
http://mydomain.com/test.php?word=hello
使用 PHP 我会使用以下
$word = $_GET["word"];
谁能告诉我是否有可能实现相同的目标但使用JavaScript
?
谢谢
是的,有可能:
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];
}
您可以使用 获取这些值window.location.search
。您可以滚动自己的代码来解析它,也可以使用类似这个问题的答案的东西。