我需要显示动态日期选择器,我的代码如下
$(function() {
$('.datepicker').datepicker({
showAnim: "clip",
gotoCurrent: true,
dateFormat: "dd-mm-yy"
});
$('#mdcn_name').click(function(){
$('<tr class="field" id="row"><td><input type="text" id="expire_date" name="expire_date" class="datepicker" placeholder="dd-mm-yyyy"/></td></tr>').fadeIn('slow').appendTo('#dataTabl');
});
});
<table id="dataTabl">
<tr>
<th>Exp Date</th>
</tr>
</table>
当我单击添加行时,我需要动态创建/显示日期选择器。请帮我