encodeURIComponent()编码和decodeURIComponent()解码
html1:
<!DOCTYPE HTML> <meta charset=utf-8> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>test</title> <a href="2.htm" v="任晓强" id="test">go</a> <style> .cur{color:#f00;} </style> <script> test.href = test.href + "?" + encodeURIComponent(test.getAttribute("v"));//对任晓强进行编码 </script>
html2:
<!DOCTYPE HTML> <meta charset=utf-8> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>test</title> <div id="test"></div> <style> .cur{color:#f00;} </style> <script> var name = decodeURIComponent(location.search).replace("?",""); //解码并替换网址 //decodeURIComponent(name); console.log(name) test.innerHTML = "你好" + name; //给test赋值 </script>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。