如何将下面的两个脚本合二为一,目标是获得一个脚本来为表单中的输入/选择字段生成 tabindex 顺序功能(其中 1、7、3 是字段的 ID (#))?
$(function(){
var tabindex = 1;
$('input,select').each(function() {
if (this.type != "hidden") {
var $input = $(this);
$input.attr("tabindex", tabindex);
tabindex++;
}
});
});
$(function () {
var tab_order_positions = [1, 7, 3],
tab_order = 0;
for (var i = 0, _len = tab_order_positions.length; i < _len; i++) {
$('#input_' + tab_order_positions[i]).attr('tabindex', ++tab_order);
}
});