我正在使用 twitter bootstrap,我有这个代码
$('.addYT').on('click', function(event) {
var $this = $(this);
event.preventDefault();
}).popover({
placement: 'bottom',
html: true,
content: function(e) {
return $('.YTadd').html();
}
});
一切正常,但其中popover content:
有一个类似 .html 的 html 代码<a href="#">
。我希望它是preventDefault。但它不起作用。有谁知道如何做到这一点?