例如:
var txt="We are the so-called "Vikings" from the north." document.write(txt) 【错误】
var txt="We are the so-called \"Vikings\" from the north." document.write(txt) 【正确】
您好,您这样:<html>
<head>
<title>字符转HTML实体编码</title>
<script>
function $(id) {return document.getElementById(id)}
function htmlEncode(input)
{
var code = input.charCodeAt()// 获得实体编码
var div = $("divCode")
/*
* 实体编码的格式是:数字
* &是 &
* # 是 #
* code 用户输入的字的实体编码
* 是
*
* 如果直接写成 "" + code + ""的形式会被浏览器直接解析为对应的字符,从而失去了编码的作用。
*/
div.innerHTML = "&" + "&#35" + code + "&#59"//String.fromCharCode(code)解码
}
</script>
</head>
<body>
<input type="text" onchange="htmlEncode(this.value)"/>
<div id="divCode"></div>
</body>
</html>
使用 String.fromCharCode(code)便可以将实体编码转换回字符。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)