我将 jquery datepicker 插件绑定到 class="datepicker" 的任何元素。
$(".datepicker").datepicker();
我正在加载一个表格:
<button type="button" class="btn btn-xs pull-right" data-toggle="modal" data-target="##modal" href="profile/eventnew"><i class="icon-plus"></i></button>
在正在加载的表单中,我有一个带有 的字段class='datepicker'
,但是它没有被 datepicker 插件拾取,因为$(".datepicker").datepicker();
执行时该元素不存在。
我知道有了事件,我可以使用 jquery.on()
方法绑定到 ajax 加载的元素,但是这里没有事件。
如何绑定诸如$(".datepicker").datepicker();
Ajax 加载的元素之类的东西?
非常感谢