您的位置:首页 > Web前端 > JavaScript

js传url中文参数乱码问题

2014-01-04 15:41 429 查看
$("#btnKeyWord").click(function () {
window.open("/Atraction/Atraction.aspx?keyword=" + encodeURI(encodeURI($("#txtKeyWord").val())));
});


注意:这里要两次转码

$("#searchContent").val(decodeURI(getQueryString("keyword")));
if (getQueryString("keyword") == null) {
bindData('', _PageSize, 0, isPrice, lowPrice, highPrice, orderStr, atrType, level);
}
else {
bindData(decodeURI(getQueryString("keyword")), _PageSize, 0, isPrice, lowPrice, highPrice, orderStr, atrType, level);
}


解码
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: