html參數傳遞?
還不是一樣,用 querystringa頁面:document.location.href="b.htm?param=p";在b頁面里面,用js去分析location.href 就行了。給你個現成的: window.QeryStringParser = function(){ var url = window.location.href ; var rex = /[^\x00-\xff]+/ ; if(rex.exec(url))url = encodeURI(url) ; if(url.indexOf("?")0) s = s.substr(1) + "&" ; s += "_pre=" + window.location.href.substr(0,window.location.href.indexOf("?")) ; return s ; } }window.QeryStringParser.prototype.getTypeName = function(){ return "QeryStringParser" ; } window.QeryStringParser.prototype.getParam = function(name){ if(typeof(this[name])=="undefined") return "" ; return this[name] ; } window.queryString = new QeryStringParser() ;調用的時候,加上上面的代碼,要取參數,用 queryString.getParam("p") ; 就行了,可以接收多個參數。