发布网友 发布时间:2022-05-09 22:57
共3个回答
热心网友 时间:2022-04-24 04:18
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns=" http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><title>JS过滤脏话</title><script type="text/javascript">//过滤字符串用豆号隔开!function check(obj){//过滤的可以在text""这里面加用豆号隔开就行了 var text= "靠,*,*,*,*,*"; var array=text.split(','); for(var i=0;i<array.length;i++) { if(array[i]== obj) { alert("请不要使用敏感文字!"); return; } }}热心网友 时间:2022-04-24 05:36
做了一个例子,你看看 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">热心网友 时间:2022-04-24 07:11
把这一段代码改掉if (document.submit_form.name.value=='啊')改成下面的代码:if (document.submit_form.name.value.indexOf("啊")>=1)