0

我有一个像/accounts/?status=done

current url因此,在加载文档时,我想获得GET data状态=完成

所以下面是我的代码,它可以获取当前的 url,但不能获取 GET 数据

<script>
  $(window).load(function() {
                             //alert("window load occurred!");
                             var pathname = window.location.pathname;
                     console.log(pathname);
                     $.get(pathname,function(data){ console.log(data) });
                    });
</script>

那么如何在加载页面时在 jquery 中获取当前 url 和 GET 数据,例如 ?status=done ?

编辑

所以我已经根据下面提供的链接进行了编辑,但仍然无法打印查询字符串参数

<script>
            function getParameterByName(name) {
                console.log(name+"......................");
                          name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
                          var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
                          results = regex.exec(location.search);
                          return results == null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
                            }

  $(window).load(function() {
                             //alert("window load occurred!");
                             var pathname = window.location.pathname;
                         console.log(pathname+"hurayyyyy");
                     console.log(pathname);
                     var res = getParameterByName(window.location.pathname)
                 console.log(res+"oooppppppppppppssssssssssss");
                    });


</script>

结果就像下面一样

在此处输入图像描述

4

3 回答 3

0

通过服务器端语言在 javascript 变量上分配值,然后在您的 javascript 代码中使用该变量值。

这是PHP服务器端语言代码:-

var get_status = "<?php echo $_GET['status']; ?>";
    if(get_status== 'done'){
    //here is your code
    }
于 2013-12-02T10:30:44.860 回答
0

You could also try something like this:

<script>
    $(window).load(function() {
        var URL = $(location).attr('href');
        var GET_ARR = URL.split('/');
        if($.inArray('?status=done', GET_ARR)){
            //do something
        }                      
    });
</script>
于 2015-02-03T12:21:09.513 回答
0

如何在 jquery 中获取页面的当前 URL

var URL = $(location).attr('href');

现在变量 URL 包含浏览器位置的当前地址。

于 2015-02-03T11:15:42.707 回答