站内搜索:
首页 >> 前端 >> 内容
正则表达式之过滤敏感词

时间:2017/7/25 11:24:23

正则表达式之过滤敏感词
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script>
window.onload=function(){
var oTxt1=document.getElementById('txt1');
var oTxt2=document.getElementById('txt2');
var oBtn=document.getElementById('btn1');

oBtn.onclick=function(){
              //敏感词过滤
var re=/北京|百度|淘宝/g;
oTxt2.value=oTxt1.value.replace(re,'*****');

}


}


</script>
</head>


<body>
<textarea id="txt1" rows="10" cols="40"></textarea><br />
<input id="btn1" type="button" value="过滤" /><br />
<textarea id="txt2" rows="10" cols="40"></textarea>




</body>
</html>

 

  • 上一篇:forward和redirect的区别
  • 下一篇:社区club-web的那2个小项目(PC端和移动端)-vue架构梳理
  • 返回顶部