var url = "${request.contextPath}/test/openWindow.action?number="+number; var spec = "scrollbars=yes,toolbar=no,menubar=no,location=no,status=yes,resizable=yes,left=400,top=200,width=400" + ",height=150"; var oNewWindow = win…
function getUrlParam(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); var r = window.location.search.substr(1).match(reg); if (r != null) return unescape(r[2]); return null; } 方法如上:利用正则 调用方式为: getUrlParam…
今天在js代码中加了一句window.location.href(‘url’)希望实现页面的跳转,IE中可以正常使用,但是Firefox却提示window.location is not a function. google以后将代码改为window.location='url' 程序正常执行. 简言之: 下面的格式可以在IE中正常执行,但是不能在Firefox和Chrome中执行: window.location.href("http://stackoverflow.com"); 下…