js 解決傳遞url參數中文亂碼問題

指向url:

url?ViewName=可研

  

獲取js方法:

function getQueryString(key) {
    var reg = new RegExp("(^|&)" + key + "=([^&]*)(&|$)");
    var result = window.location.search.substr(1).match(reg);
    if (result != null) {
        return decodeURIComponent(result[2]);
    } else {
        return "";
    }
     
}
相關文章
相關標籤/搜索