如果用户键入:
my name is jackson5 model number 5g1 |nR%1b and I would 644 like to say 55 hello to all the tags of html in the world.
我想用 55hello 替换 55 hello,同时他们继续输入而不会打嗝或中断输入框。
到目前为止,这是我的代码。我有正则表达式语句,但不知道如何替换 55 hello 之间的空格,使其变为 55hello。
<script type="text/javascript">
function isValid(strQuery){
var regStatement =/[0-9]+ hello/;
if (regStatement.test(strQuery.value)) {
strQuery.value = strQuery.value.replace("$2","");
}
}
</script>
<input type="text" id="wtf" name="search_query" onkeyup="isValid(this);" />