JS跳转乱码问题

JS转码

var text = document.form.province.value;


//注意要两次
text = encodeURI(text);
text = encodeURI(text);


Action 解码

try {
text = java.net.URLDecoder.decode(text, "utf-8");
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}

你可能感兴趣的:(ssh)