我有以下模板,其中包含javascript文件中的日历图标。它并没有出现在我的html文件中,因为它是动态使用的。
var iconTemplate = '<li id=\"{streamID}\" class=\"list\">{streamName} <i class="fa fa-calendar pull-right"></i></li>';
我想在日历图标和打开日期选择器中添加点击事件。我尝试了以下方法:
$('.fa-calendar').click(function(){
$(this).datepicker();
});
我猜这不起作用,因为它没有调用html文件中的类。是否可以在javascript文件中完成所有操作?
答案 0 :(得分:0)
$(document).on('click, '.fa-calendar', function(){
...