博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
js 过滤敏感词
阅读量:5068 次
发布时间:2019-06-12

本文共 740 字,大约阅读时间需要 2 分钟。

<
html
>
<
head
>
    
<
title
>Bad Words Example</
title
>
    
<
script
type
=
"text/javascript"
>
 
            
function filterText(sText) {
                
var reBadWords = /badword|anotherbadword/gi;
                
return sText.replace(reBadWords, "****");
            
}
 
            
function showText() {
                
var oInput1 = document.getElementById("txt1");
                
var oInput2 = document.getElementById("txt2");
                
oInput2.value = filterText(oInput1.value);
            
}
    
</
script
>
</
head
>
<
body
>
    
<
P
>
    
<
textarea
rows
=
"10"
cols
=
"50"
id
=
"txt1"
>badword anotherbadword</
textarea
><
br
/>
    
<
input
type
=
"button"
value
=
"Filter Bad Words"
onclick
=
"showText()"
/></
p
>
    
<
P
>Filtered Text:<
br
/>
    
<
textarea
rows
=
"10"
cols
=
"50"
id
=
"txt2"
></
textarea
></
p
>
 
</
body
>

转载于:https://www.cnblogs.com/freddyhuang/p/5783919.html

你可能感兴趣的文章
CPU,寄存器,一缓二缓.... RAM ROM 外部存储器等简介
查看>>
windows下编译FreeSwitch
查看>>
git .gitignore 文件不起作用
查看>>
Alan Turing的纪录片观后感
查看>>
c#自定义控件中的事件处理
查看>>
django Models 常用的字段和参数
查看>>
IOS--沙盒机制
查看>>
使用 JointCode.Shuttle 访问任意 AppDomain 的服务
查看>>
sqlite的坑
查看>>
digitalocean --- How To Install Apache Tomcat 8 on Ubuntu 16.04
查看>>
【题解】[P4178 Tree]
查看>>
Jquery ui widget开发
查看>>
关于indexOf的使用
查看>>
英语单词
查看>>
centos6.8下安装matlab2009(图片转帖)
查看>>
Mongo自动备份
查看>>
cer证书签名验证
查看>>
新手Python第一天(接触)
查看>>
【bzoj1029】[JSOI2007]建筑抢修
查看>>
synchronized
查看>>