jQuery Mobile Datepicker在动态添加元素上无法正常工作

时间:2014-04-28 06:43:59

标签: jquery jquery-mobile datepicker

当动态字段添加时,Datepicker没有打开/显示,我在stackoverflow上得到了很多答案,

$(this).removeClass("hasDatepicker");
$(this).datepicker(); 

当我这样做时,我得到了这个。

enter image description here

当动态添加字段时,它会显示类似这样的datepicker enter image description here

如果你不理解,你们是否理解我的问题或我的问题;随时发表评论。

"如何在动态添加的字段中正确执行此操作?"

这些是字段,我添加运行时,它在函数中,当函数调用字段添加时。

被修改

 "<div id='by_age_box' class='ui-grid-a'>" +
                                        "<div class='ui-block-a'><label>From</label><input data-role='date' type='text' class='hasDatepicker' name='filterage_from' id='filterage_from_"+counter+"_"+counter+"'/></div>"+
                                        "<div class='ui-block-b'><label>To</label><input data-role='date' type='text' class='hasDatepicker' name='filterage_to' id='filterage_to_"+counter+"_"+counter+"'/></div>"+
                                    "</div>"

0 个答案:

没有答案