0
我試圖將內容動態加載到Bootstrap彈出窗口中。提交表格時,我可以提醒該值;這工作正常。我不能做得到的內容#popover-thanks
加載在彈出窗口中,用感謝信息替換表單。在表單提交後將動態內容加載到Bootstrap彈出窗口中
// show the popover
$('#btn').popover({
html : true,
placement: 'top',
content: function() {
return $('#popover-form').html();
}
});
// form has been submitted
$(document).on('click', '#submit', function() {
var value = $('#value').val();
alert(value);
$('#btn').popover({
html : true,
content: function() {
return $('#popover-thanks').html();
}
});
});
哈!我試圖摧毀它並展示它,但不是在一起!謝謝 :) – timgavin