$(':input').blur(function () {
$(this).css('border', 'solid 1px #ccc');
// Check if last input and do line below
//if(condition if $(this) is last element)
// $('#someOtherId').focus();
});
在上面的代码中,如何知道 id $(this) 是所有选定输入的最后一个输入?