这是我的弹出框代码:
$(function () {
$('.popover').popover({
html : true,
content: console.log($(this).id) ,
placement: 'top'
});
});
这是我的html代码:
<a class="popover" id="CHANGING-NUMBER(4,5,6,....)"> Foo </a>
但控制台中显示的输出仅显示“未定义”。如何获取显示弹出框的锚的 ID?