引導彈出框第一次單擊打開,第二次單擊關閉。在這裏,我想打開彈出窗口,當它是第一次或第二次點擊它。單擊時總是打開引導彈出框
請給我建議。
<i class="fa fa-file" id="popoverDwnFiles"></i>
$("#popoverDwnFiles").popover({
html: true,
content: function() {
return $('#divDownloadContent').html();
},
title: '<span class="text-info">Exported Files</span>' +
'<button type="button" id="close" class="close" onclick="$("#popoverDwnFiles").popover("hide");">×</button>',
placement: 'bottom'
});
謝謝,它按預期工作。 – Rao