return false; } $(document).on("click", document.body, function (e) { if ($(e.target).hasClass("QQCancel")) { if (typeof (modulesContainers) != 'undefined') { $(".QQList").removeAttr("style"); } $(".QQServices").hide(); e.stopPropagation(); } }); function showHomePage() { if (window.location.search.indexOf('view=1') > -1) { window.location.href = window.location.protocol + '//' + window.location.host + '?view=1&SiteType=1'; } else { window.location.href = window.location.protocol + '//' + window.location.host + '?SiteType=1'; } } $("#MobileFootNavRenderElem").remove(); function getUrlParam(name) { //构造一个含有目标参数的正则表达式对象 var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); //匹配目标参数 var r = window.location.search.substr(1).match(reg); //返回参数值 if (r != null) { return decodeURI(r[2]); } return null; }