我为我正在开发的一个小型聊天系统提供了这个函数。当用户键入"shout"后加上一些文本(例如:"shout hello!")。我只想输出"hello!"(其余的应该被忽略)。当我只有一个命令时,这很有效。但现在我有了"shout" &"消息"。我试着用下面的代码做一些事情,但它似乎不起作用:
function checkValue() {
var value = document.getElementById("thisinput").value;
// output text without "message" in front
if (value == "message") {
$('#output').html(value.replace('message', ''));
}
// output text without "shout" in front
else if (value == "shout") {
$('#output').html(value.replace('shout', ''));
}
// output nothing
}
谢谢!
try
if(value.indexOf("message") != -1)