It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center。
6年前关闭。
我正在使用下面的代码向表中添加一行,它可以正常工作。
我正在使用Tigra Calendar,并按照说明输入了
这就是我所说的日历:
6年前关闭。
我正在使用下面的代码向表中添加一行,它可以正常工作。
$(document).ready(function() {
$("#tr_clone_add").click(function(){
$('#listuser > tbody').after(
'<tr><td><input type="text" class="tcal" readonly="true" path="date_debut"/></td></tr>'
);
});
});
我正在使用Tigra Calendar,并按照说明输入了
class="tcal"
,因此它应该显示日历/日期选择器。但是日历没有出现,我只得到了简单的输入字段。如何显示日历?这就是我所说的日历:
<link rel="stylesheet" type="text/css" href="tcal.css" />
<script type="text/javascript" src="tcal.js"></script>
最佳答案
看来您使用的是Tigra Calendar http://www.softcomplex.com/products/tigra_calendar/
首先,之所以不起作用,是因为该日历库希望页面已完全加载,并且在页面首次加载后不会再向该页面添加其他元素。
其次,您可以通过添加元素后调用f_tcalInit()
再次初始化日历来修复它。像这样:
$(document).ready(function() {
$("#tr_clone_add").click(function(){
$('#listuser > tbody').after('<tr><td><input type="text" class="tcal" readonly="true" path="date_debut"/></td></tr>');
f_tcalInit();
});
});
09-06 08:40