使用 Javascript 将 HTML 转换为其安全实体
我正在尝试将 <
和 >
等字符转换为 <
和 >
等。
用户输入从文本框中获取,然后复制到名为 changer
的 DIV 中。
这是我的代码:
function updateChanger() {
var message = document.getElementById('like').value;
message = convertHTML(message);
document.getElementById('changer').innerHTML = message;
}
function convertHTML(input)
{
input = input.replace('<', '<');
input = input.replace('>', '>');
return input;
}
但它似乎并没有取代 >
,只是 <
。也尝试过这样的:
input = input.replace('<', '<').replace('>', '>');
但我得到了相同的结果。
谁能指出我在这里做错了什么?干杯。
I'm trying to convert characters like <
and >
into <
and >
etc.
User input is taken from a text box, and then copied into a DIV called changer
.
here's my code:
function updateChanger() {
var message = document.getElementById('like').value;
message = convertHTML(message);
document.getElementById('changer').innerHTML = message;
}
function convertHTML(input)
{
input = input.replace('<', '<');
input = input.replace('>', '>');
return input;
}
But it doesn't seem to replace >
, only <
. Also tried like this:
input = input.replace('<', '<').replace('>', '>');
But I get the same result.
Can anyone point out what I'm doing wrong here? Cheers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
更可靠的方法是创建一个 HTML 文本节点;这样,所有其他可能无效的内容(不仅仅是 < 和 >)都会被转换。例如:
更新
您提到每次按键时都会触发您的事件。如果这就是触发此代码的原因,您需要在附加文本之前删除 div 中先前的内容。一个简单的方法是这样的:
A more robust way to do this is to create an HTML text node; that way all of the other potentially invalid content (there's more than just < and >) is converted. For example:
UPDATE
You mentioned that your event was firing upon each key press. If that's what's triggering this code, you'll want to remove what was previously in the div before appending the text. An easy way to do that is like this:
尝试这样的操作:
替换仅替换第一次出现的 >或<在字符串中,为了替换所有出现的 <或 >,使用带有 g 参数的正则表达式,以确保在整个字符串中搜索所有出现的值。
Try something like this:
replace only replaces the first occurrence of > or < in the string, in order to replace all occurrences of < or >, use regular expressions with the g param to ensure the entire string is searched for all occurrences of the values.