js 中文uri编码转换

发布时间:2020-01-25编辑:脚本学堂
分享一个js中文uri编码转换的例子,实例url编码转换成中文,有需要的朋友参考下。

本节内容:
js中url编码转换实例。

js的内置函数(encodeuricomponent();decodeuri())实现中文与uri间的转换
例子:
 

复制代码 代码示例:
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> 
<title>js 实现中文的uri编码_www.jb200.com</title> 
<mce:script type="text/javascript"><!-- 
    function test(){ 
        var str = document.getelementbyid("srcstr").value; 
        var strtouri = encodeuricomponent(str); 
        document.getelementbyid("strtouri").innerhtml = strtouri; 
        var uritostr = decodeuri(strtouri); 
        document.getelementbyid("uritostr").innerhtml = uritostr; 
    } 
// --></mce:script> 
</head> 
<body> 
<p>要转换的文字: 
  <input type="text" id="srcstr" /> 
</p> 
<p> 
传换成的uri代码: 
<textarea cols="30" rows="3" id="strtouri"> 
 

uri代码转换成文字: 
url<a href=http://www.jb200.com/zt/bianmazhuanhuan/ target=_blank class=infotextkey>编码转换</a>