<input type="text" id="NotInputS" />
</form>
<script>
document.getElementById("NotInputS").onkeypress=function(e){
var keynum=window.event ? e.keyCode : e.which//获取键盘码
var keychar = String.fromCharCode(keynum)//获取键盘吗对应的字符
alert(keynum)
if(keychar=='S' || keychar=='s')//这个实例不能输出S,s
return false//返回false表示不输出此字符
else
return true//true就是输出
}
//请用onkeypress,不要用onkeydown/onkeyup
//除非你不在意字母的大小写
//onkeydown的S与s的按键码是一样的
</script>
<script>document.onkeydown=keydown
function keydown(){
return false
}
</script>
<body>
<input type="text">
</body>
把这段代码另存为test.html试试效果吧