正如我在TJ VanToll的答案评论中所提到的,只要在加载DOM时存在与触发器绑定的父元素,就可以了。
有关示例,请参见此小提琴。
JS:
$(function(){ $(document).on("focusin",".datePick", function () { $(this).datepicker({ dateFormat: "dd/mm/yy", changeMonth: true, changeYear: true, onClose: function () { $(this).valid(); } }); }); $('#focusin').append('<input name="datepicker" />');});
HTML:
<div id="focusin"></div>
只要您的模式div出现在加载中,它就应该能够在加载后捕获您的输入。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)