我已提到在类似问题中找到的答案,但没有帮助。当我单击按钮时,我想弹出一个引导确认。这些按钮应不时通过js添加。下面是我的代码:
control ='<li style="width:100%;">' +
'<div class="msj macro">' +
'<div class="avatar" style="padding:0px 0px 0px 0px !important"><img class="img-circle" style="width:auto; height:100px; background-color: #ffffff38;" src="'+dan.avatar+'" /></div>' +
'<div class="text text-r">' +
'<p>'+text+link+'</p>' +
'<p><small><button class="feedback-btn " data-toggle="confirmation" data-confirmation-event="myevent" data-placement="top" data-singleton="true" data-popout="true">Feedback</button>'+date+'</small></p>' +
'</div>' +
'</li>';
附加功能如下:
function(){
$("#conversation").append(control).scrollTop($("ul").prop('scrollHeight'));
}
初始化函数是这样的:
$('#conversation').on("confirmation","[data-toggle=confirmation]",function(){
rootSelector: '[data-toggle=confirmation]'
// other options
});
据我所知一切似乎都很好,但是确认框未添加到DOM中。谁能告诉我:这段代码有什么错误吗?