欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

js 解决传递url参数中文乱码问题

程序员文章站 2022-04-02 21:26:49
...
指向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 "";
    }
     
}