发布网友 发布时间:2022-05-09 22:57
共2个回答
热心网友 时间:2022-04-20 17:02
<input type="text" id="theOne" value="">追问是否可以不要直接为空 貌似记得有个什么 & g t;& l t 可以替代?
(/]*>/g,'');-主要是这一坨分不清!不知道分别代表什么,可赐教否?
另外还有可否检索输入框中的 { } 这种花括号,直接过滤掉?
追答<input type="text" id="theOne" value="">
<input type="button" onclick="NoHtml()" value="过滤html标签">
<script>
function NoHtml(){
var t=document.getElementById("theOne").value;
t=t.replace(/({|})/g,'');//过滤{}
t=t.replace(/</g,'<');//置换符号<
t=t.replace(/>/g,'>');//置换符号>
//t=t.replace(/<\/?[^>]*>/g,'');//*<\/?[^>]*>可以匹配<script></style></body>等,并置空。而不是替换<和>两个符号
document.getElementById("theOne").value=t;
}
</script>
热心网友 时间:2022-04-20 18:20
<input type="text" id="theOne" value="">