标签: javascript jquery
如果使用JavaScript和jQuery按下向上或向下箭头键,如何防止光标跳到文本框的开头或结尾?
答案 0 :(得分:7)
<input type="text" />
$("input:text").keydown(function(e){ if(e.which == 38 || e.which == 40) e.preventDefault(); });
您可以阻止向上和向下箭头键的默认设置。
http://jsfiddle.net/C5ZCE/