// 请用户输入一条消息
var msg = prompt("请输入消息内容")
// 去用户消息中查找敏感词“我草”的位置
var i = msg.search(/([我窝]|wo)\s*([草艹操]|cao)/i)
if (i != -1) {// 如果找到
document.write(`<h1 style="color:red">管理员:发现敏感词,不允许发送!`) // 就在网页中显示红字:“管理员:发现敏感词,不允许发送”
} else { // 否则没找到
// 就在网页中显示用户说的话
document.write(`<h1 style="color:#faf">${msg}</h1>`)
}
//总结:search查找 可以支持正则表达式,如果找到返回对应下标 如果找不到返回-1