有没有办法添加如下网址参数:http://site.com?open=true

在准备好文档时,如果jQuery看到将open参数设置为true,则执行一个函数?

谢谢

最佳答案

首先让我们在JS中进行良好的查询字符串搜索

function querySt(qsName, url)
        {
            var theUrl;
            if (url == null || url == undefined)
                theUrl = window.location.search.substring(1); else theUrl = url;
            var g = theUrl.split("&");
            for (var i = 0; i < g.length; i++) {
                var pair = g[i].split("=");
                if (pair[0].toLowerCase() == qsName.toLowerCase())
                {
                    return pair[1];
                }
            }
            return null;
        }



$(function (){
  if (querySt("open")!='true') return;

});

10-06 14:15