網頁上改為向下移動
//網上找到 jquery 在網頁時,將 Enter 鍵改為 Tab 的作用
$("input").not( $(":button") ).keypress(function (evt) {
if (evt.keyCode == 13) {
if ($(this).attr("type") !== 'submit'){
var fields = $(this).parents('form:eq(0),body').find('button, input, textarea, select');
var index = fields.index( this );
if ( index > -1 && ( index + 1 ) < fields.length ) {
fields.eq( index + 1 ).focus();
}
$(this).blur();
return false;
}
}
});