encodeURI的使用

在搜索框中输入中文,搜索中文时,ie10出现了以下问题,firefox和chrome不会有这问题,

解决方案是:

window.location.href = encodeURI("/search?keyword="+keyword+"&source="+source);

只要加上encodeURI便可。


你可能感兴趣的:(encodeURI的使用)