如何将以下两种文字合并为一种文字,目的是获得一种文字,为投入/选择领域制作一个表格索引牌(田地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);
}
});