JS在url中传递参数时参数包含中文乱码的问题

1.传参页面JavaScript代码:

window.location.href="test.jsp?username="+username;

2.接收参数页面:

window.onload=function(){
			var user = GetRequest()
			document.getElementById("userinfo").innerHTML = "欢迎:"+user.username+"同学";
			document.getElementById("user").value=user.username;
		}
		
		function GetRequest() {
	        var url =decodeURI(decodeURI(location.search)); //获取url中"?"符后的字串,使用了两次decodeRUI解码
	        var theRequest = new Object();
	        if (url.indexOf("?") != -1) {
	            var str = url.substr(1);
	            strs = str.split("&");
	            for (var i = 0; i < strs.length; i++) {
	                theRequest[strs[i].split("=")[0]] = unescape(strs[i].split("=")[1]);
	            }
	            return theRequest;
	        }
		}

参考:https://www.cnblogs.com/xushengguan/p/7404749.html

全部评论

相关推荐

码农索隆:这种hr,建议全中国推广
点赞 评论 收藏
分享
05-16 11:16
已编辑
东华理工大学 Java
牛客73769814...:盲猜几十人小公司,庙小妖风大,咋不叫她去4️⃣呢😁
牛客创作赏金赛
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务