show code js

2012年12月19日 星期三

Enter key change to Tab key with TabIndex



$(document).ready(function(){
    $('input, textarea, select').not( $(':button') ).keypress(function (event) {
        if (event.keyCode == 13) {
            if ($(this).attr("type") !== 'submit'){
var tabindex = $(this).attr('tabindex');
if( tabindex == 0 )
{
tabindex = 1;
}
else
{
tabindex++;
}
$('select[tabindex=' + tabindex + '],input[tabindex=' + tabindex + '],textarea[tabindex=' + tabindex + ']').focus();
                $(this).blur();
                return false;
            }
        }
    });
});



沒有留言:

張貼留言