window.location.search.substr(1); //substr(1) 是去掉參數裡最開頭的?號。 複製程式碼 程式碼如下: function getQuery(para){ var reg = new RegExp("(^|&)" para "=([^&]*)(&|$)"); var r = window.location.search.substr(1).match( reg); if(r!=null){ return unescape(r[2]); } return null; }