採用正則表達式獲取地址欄參數:javascript
寫一個方法來進行正則匹配,一樣也能夠複用java
function GetPar(name) { var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)"); var r = window.location.search.substr(1).match(reg); if(r!=null)return unescape(r[2]); return null; }
/ /調用方法正則表達式
console.log(GetPar("http://www.baidu.com?language=en"));
/ /輸出blog
enip