原来定义JS类库这么简单



var JSMethod = {
    getUrlParam: function (strname) {//从URL获取参数
        var hrefstr, pos, parastr, para, tempstr;
        hrefstr = window.location.href;
        pos = hrefstr.indexOf("?");
        parastr = hrefstr.substring(pos + 1);
        para = parastr.split("&");
        tempstr = "";
        for (i = 0; i < para.length; i++) {
            tempstr = para[i];
            pos = tempstr.indexOf("=");
            if (tempstr.substring(0, pos) == strname) {
                return tempstr.substring(pos + 1).replace("#", "");
            }
        }
        return null;
    }     
}
 


你可能感兴趣的:(JavaScript,/,JQuery)