我有以下,但它不工作。jQuery 事件是否支持 keyCode 或者我需要在其他地方获取它?
$('#search-query').on('keyup',function(event){
if(event.keyCode!==38 or event.keyCode!==40){
search_autocomplete.call(this);
}
});
如果它是 keyCode 38 或 40,我将如何告诉 jQuery 忽略它?最终,我想让它喜欢http://www.linkedin.com/上的搜索栏。也许只是引导它?http://twitter.github.com/bootstrap/javascript.html#typeahead
提前谢谢