一、禁用输入法:
<input style="ime-mode:disabled;" />
二、禁止粘贴(Ctrl + V):
<input onpaste="return false" />
《2012-01-20_备忘》
三、在text控件中限制中能输入 数据和 ":" ,用于输入时间格式:hh:mm
<input type="text" id="a1" name="a1" onkeypress="return onlyInputNum(event);"/>
// 限制用户允许输入数据和":"
function onlyInputNum( e ){
var kc = e.keyCode;
// alert(kc);
// 冒号的 keyCode 是 58
if(kc >= 48 && kc <= 58){
return true;
}
return false;
}
<2012-04-25_备忘>