关于汉语格式的输出
程序员文章站
2022-06-12 15:57:25
...
关于中文格式的输出
中文怎么选择输出格式?
比如我要把 :广州图书馆
输出为:%E5%B9%BF%E5%B7%9E%E5%9B%BE%E4%B9%A6%E9%A6%86
------解决方案--------------------
------解决方案--------------------
用urlencode函数
中文怎么选择输出格式?
比如我要把 :广州图书馆
输出为:%E5%B9%BF%E5%B7%9E%E5%9B%BE%E4%B9%A6%E9%A6%86
------解决方案--------------------
var str = "广州图书馆";
alert(encodeURI(str))
------解决方案--------------------
用urlencode函数
相关文章
相关视频