我注意到jQuery datepicker既没有激活当前元素也没有激活当前元素,也没有激活当前元素,因为Tabed到一个字段后会生成一个datepicker实例,并且鼠标用于点击一天。
<input type="text" id="no1" />
<input type="text" id="no2" />
<input type="text" id="no3" />
$('#no2').datepicker();
$('#no1').focus();
如果您查看http://jsfiddle.net/DgkJZ/1/
并选择第二个字段,点击一个日期,你会看到我对标签焦点无处可能的含义。有没有办法解决这个问题,而不涉及编辑jQuery UI源代码?
答案 0 :(得分:1)
尝试抓住onSelect
并相应地设置焦点
$('#no2').datepicker( {
onSelect: function() {
$('#no3').focus();
}
);