| <script type="text/javascript"> var uri="http://w3schools.com/my test.asp?name=ståle&car=saab"; var uri_encode=encodeURIComponent(uri); document.write(uri_encode); document.write("<br />"); document.write(decodeURIComponent(uri_encode)); </script> |
The output of the code above will be:
| http%3A%2F%2Fw3schools.com%2Fmy%20test.asp%3Fname%3Dst%C3%A5le%26car%3Dsaab http://w3schools.com/my test.asp?name=ståle&car=saab |
本文通过一个简单的JavaScript脚本示例介绍了如何使用encodeURIComponent和decodeURIComponent函数进行URL的编码与解码。这对于理解URL中特殊字符的处理方式非常有用。
188

被折叠的 条评论
为什么被折叠?



