不要使用属性,而是为您希望使用 datepicker 的元素id
分配一个有意义的class
eg 。datepicker
然后更新您的 javascript 以使用该类选择器。
例子:
<!-- HTML -->
<input type="text" id="fieldName1" class="datepicker" />
<input type="text" id="fieldName2" class="datepicker" />
// jQuery
jQuery(document).ready(function($) {
$('.datepicker').datepicker({
autoclose: true
});
});
更新:
如果您不想使用类选择器并且想要使用多个id
s,那么您可以执行以下操作:
<!-- HTML -->
<input type="text" id="fieldName1" />
<input type="text" id="fieldName2" />
// jQuery
jQuery(document).ready(function($) {
$("#fieldName1, #fieldName2").each(function() {
$(this).datepicker({
autoclose: true
});
});
});