前端url传递数据编码问题

有些符号在URL中是不能直接传递的,如果要在URL中传递这些特殊符号,那么就要使用他们的编码了

可以使用 encodeURIComponent方法进行编码

案例:

window.parent.frames.location.href=getRootPath()+"/terminalInfo/index.do?encryptedStr="+encodeURIComponent(encryptedStr)+"&sign="+sign+"&data="+encodeURIComponent(data)+"&pageType=I01";

 

你可能感兴趣的:(前端,javascript)