0

我能够从具有以下结构的 URL 获取数据 -

http://mydomain.com/test.php?word=hello

使用 PHP 我会使用以下

$word = $_GET["word"];

谁能告诉我是否有可能实现相同的目标但使用JavaScript

谢谢

4

2 回答 2

1

是的,有可能:

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];
}

来源:使用 Javascript 获取 URL 参数

于 2012-04-19T11:53:56.570 回答
0

您可以使用 获取这些值window.location.search。您可以滚动自己的代码来解析它,也可以使用类似这个问题的答案的东西。

于 2012-04-19T11:55:41.077 回答