我想限制可以按下的鍵。如何檢查數組是否包含元素
$('.txtComments').keydown(function (event) {
var keys = new Array();
keys[0] = "8";
keys[1] = "46";
keys[2] = "37"
keys[3] = "39"
if(!(....)) //Check whether the keyCode is either of 8, 46, 37, or 39.
{
event.preventDefault();
}
});
感謝您的幫助
'變種鍵= [8,46,37,39]; ',那麼你可以使用'$ .inArray'和'event.which' – 2013-03-05 19:06:31
嘗試使用['$ .inArray'](http://api.jquery.com/jQuery.inArray/) – 2013-03-05 19:07:36
不錯。停止投票。謝謝。 – Richard77 2013-03-05 19:27:39