代码:
<script type="text/javascript">
var uri = "%^my test**.asp?name=ståle&car=saab";
document.write(decodeURI(uri));
</script>
错误:
Line: 6
Error: The URI to be decoded is not a valid encoding
在调用实际的 decodeURI 之前,是否有解码像 %^ 这样的组合?
代码:
<script type="text/javascript">
var uri = "%^my test**.asp?name=ståle&car=saab";
document.write(decodeURI(uri));
</script>
错误:
Line: 6
Error: The URI to be decoded is not a valid encoding
在调用实际的 decodeURI 之前,是否有解码像 %^ 这样的组合?