我想在JavaScript中构建一些函数,它将文本从textarea发送到div.
我想要它做以下事情
If the user tries to send html source to a textarea,it will show the
text,and not the actual html source.
例如:
如果用户尝试发送:< img src ='aa.png'>
我想在div中看到文本:< img src ='aa.png'>,并且不想看到实际图像:aa.png
最佳答案
使用.innerText或.textContent而不是.innerHTML
eleme.innerText =“< img src ='aa.png'>”; eleme是你的div
DEMO:
document.getElementById('test1').innerHTML="
您可以阅读更多有关这三个命令与其他命令之间差异的信息Here
原文链接:https://www.f2er.com/html/426536.html