如何在密碼field.I've試圖如何在密碼字段禁用空格鍵
$(document).ready(function() {
$("#passwordId").live('keyup',function(e){
if (e.keyCode == 32) {
// e.preventDefault();
return false;
}
});
});
我甚至嘗試e.preventDefault();在調試,如果它進入禁用空格鍵但不禁用空格鍵。不知道我做錯了什麼。
試穿的keydown更換?也可能是一個兼容性錯誤。 live方法在jQuery1.8 + – 2013-03-12 12:07:22
中已棄用yes.I嘗試使用keydown,結果相同。 – sandy 2013-03-12 12:08:43
你用什麼jQuery版本? – 2013-03-12 12:09:16