我有一个用于证明用户名的文本框。但是我想在他们尝试键入或尝试粘贴单词(以及特殊字符)时限制特殊字符。我怎么能通过js做到这一点。已经编写了一个代码,但只有我可以在打字期间限制那里的特殊字符,但是当我在该文本框上粘贴一些单词时无法限制这些字符。我的代码是这样的:
<input type="text" name="bus_uname" id="bus_uname" class="reg-line-input"
value="<?php echo ($back_uname!='')?$back_uname:'Business Username';?>"
onblur="if(this.value=='') this.value='Business Username'"
onFocus="if(this.value=='Business Username') this.value='';"
onkeypress="return usernameonly(event, false)" />
在js中
function usernameonly(e, decimal) {
var key;
var keychar;
if (window.event) {
key = window.event.keyCode;
}
else if (e) {
key = e.which;
}
else {
return true;
}
keychar = String.fromCharCode(key);
if ((key==null) || (key==0) || (key==8) || (key==9) || (key==13) || (key==27) ) {
return true;
}
else if ((("!@#$%^&*()_+-=?/.><,';:").indexOf(keychar) > -1)) {
return false;
}
//else
// return false;
}
请帮助如何解决此问题。