• JS 中遇到有特殊字符或者空格时会被转译该怎么办?


    定义和用法

    encodeURI() 函数可把字符串作为 URI 进行编码。

    使用方法

    encodeURI(URIstring)

    URIstring:必需。一个字符串,含有 URI 或其他要编码的文本。

    说明

    该方法不会对 ASCII 字母和数字进行编码,也不会对这些 ASCII 标点符号进行编码: - _ . ! ~ * ' ( ) 。

    该方法的目的是对 URI 进行完整的编码,因此对以下在 URI 中具有特殊含义的 ASCII 标点符号,encodeURI() 函数是不会进行转义的:;/?:@&=+$,#

    举例

    1 <script type="text/javascript">
    2 
    3 document.write(encodeURI("http://www.baidu.com.cn")+ "<br />")
    4 document.write(encodeURI("http://www.baidu.com.cn/My first/"))
    5 document.write(encodeURI(",/?:@&=+$#"))
    6 
    7 </script>

    打印情况

    1 http://www.baidu.com.cn
    2 http://www.baidu.com.cn/My%20first/
    3 ,/?:@&=+$#

    没使用encodeURI() ,空格就会被转为%20,使用encodeURI() 便可以直接打印出来,而不会被转译

  • 相关阅读:
    Vue(五)模板
    2.typescript-你好世界
    1.typescript-安装
    jquery事件冒泡
    jquery中animate的使用
    Python 环境管理
    CentOS yum 源修改
    Node.js
    端口
    CSV
  • 原文地址:https://www.cnblogs.com/liazhimao/p/13883864.html
Copyright © 2020-2023  润新知