我会替换<到& lt和>到& gt。
我在textarea中有一个文本。我有一个提交按钮。当我点击。
我在textarea中获取了文本。我会替换<到& lt和>到& gt。
我需要你的帮助。
不是:我的英语不好。
答案 0 :(得分:0)
这很简单。只有一个谷歌。
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/replace
function myFunction() {
var textareaElm = document.getElementsByTagName("textarea")[0];
var textareaValue = textareaElm.value;
textareaValue = textareaValue.replace(/</g, '<');
textareaValue = textareaValue.replace(/>/g, '>');
console.log(textareaValue);
}
<p>Click the button to trigger a function that will output Result in console.</p>
<textarea></textarea>
<button onclick="myFunction()">Click me</button>