转义

作者: leomei91 | 来源:发表于2017-06-20 17:26 被阅读0次

    URL

    对URL中的中文进行转义
    encodeURIdecodeURIdecodeURIComponentencodeURIComponent

    url = "https://www.baidu.com/s?wd=%E4%B8%AD%E6%96%87"
    "https://www.baidu.com/s?wd=%E4%B8%AD%E6%96%87"
    z_url = decodeURI(url)
    "https://www.baidu.com/s?wd=中文"
    encodeURI(z_url)
    "https://www.baidu.com/s?wd=%E4%B8%AD%E6%96%87"
    

    总结:上面的方法常在URL中有中文时会用到。

    相关文章

      网友评论

        本文标题:转义

        本文链接:https://www.haomeiwen.com/subject/hchaqxtx.html