オートサジェストを作成しました。キーコードはリスト内を上下に移動するように機能しますが、ウィンドウがスクロールします。event.preventDefault()を試しましたが、停止していません。何か案は?これは私が試したことです:
$(document).keyup(function(e) {
e.returnValue=false;
e.preventDefault();
switch(e.keyCode) {
case 40:
suggestionLine++;
$('#suggestionLine_'+suggestionLine).focus();
break;
// etc...
ありがとうございました!