2

我知道以前有人问过这个问题,但是到目前为止发布的所有解决方案我都遇到了麻烦。我有一个如下所示的网址:

http://localhost:3000/virgil/1/render_lesson?toggle=view

这是通过 AJAX 进行的 Rails 调用,但这无关紧要。每次我尝试一个应该获取“切换”变量的函数时,当我将它打印到控制台日志时,我会得到“未定义”。我试过这个功能

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

当我打电话时,console.log(getUrlVars());我得到["http://localhost:3000/"]

但是当我打电话时,console.log(getUrlVars()["toggle"]);我只是得到undefined

我很感激任何帮助!

编辑:

添加我的代码的相关部分。这是一个 Rails 应用程序,它使用 AJAX 进行调用。

<%= link_to 'View Lessons', render_lesson_virgil_path(course, :toggle => :view), :remote => true, :class => 'toggle_lesson', :id => "toggle_lesson#{course.id}" %>

然后在它调用的 javascript 文件中:

function $_GET( 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];
}

console.log($_GET('toggle')); //This is where it prints the incorrect value to the log, regardless of the function I use.

$("#Course<%= @course.id %>").append('<div id="Lesson<%= @course.id %>" class="render_lesson"></div>');
$("#Lesson<%= @course.id %>").html("<%= escape_javascript(render( :partial => "lesson" )).html_safe  %>");
4

3 回答 3

3

这是我用于查询字符串的 JS 函数 - 希望它对您有所帮助。

function getParameterByName(name) {
var match = RegExp('[?&]' + name + '=([^&]*)').exec(window.location.search);
return match && decodeURIComponent(match[1].replace(/\+/g, ' '));
}
于 2012-04-03T21:34:23.217 回答
0

试试这个(我只更改了第 4 行 - “var hashes ...”):

function getUrlVars()
{
    var vars = [], hash;    
    var hashes = window.location.href.valueOf().split('?').slice(1)[0].split('&');
    for(var i = 0; i < hashes.length; i++)
    {
        hash = hashes[i].split('=');
        vars.push(hash[0]);
        vars[hash[0]] = hash[1];
    }
    return vars;
}
于 2012-04-03T21:39:18.413 回答
-2

我在我的 1 个项目中使用它。

function $_GET( 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];
}

看起来像 PHP $_GET['']...因为我喜欢 PHP :D

使用示例:

网址:index.php?page=newone&id=4&cat=15

Javascript:alert($_GET('page')); // newone

于 2012-04-03T21:56:55.107 回答