encodeURIComponent()编码和decodeURIComponent()解码

时间:2023-03-09 22:15:41
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>