gpt4 book ai didi

javascript - 使用 jquery 获取 popoverd 元素的 id

转载 作者:行者123 更新时间:2023-11-30 17:56:03 25 4
gpt4 key购买 nike

这是我的弹出代码:

$(function () {
$('.popover').popover({
html : true,
content: console.log($(this).id) ,
placement: 'top'
});
});

这是我的 html 代码:

<a class="popover" id="CHANGING-NUMBER(4,5,6,....)"> Foo </a>

但控制台中显示的输出只显示“未定义”。如何获取显示弹出窗口的 anchor 的 ID?

最佳答案

此时 this 并未引用该元素。您需要将 id 分别传递给每个元素:

$(function () {  
$('.popover').each( function() {
$(this).popover({
html : true,
content: this.id,
placement: 'top'
});
});
});

关于javascript - 使用 jquery 获取 popoverd 元素的 id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18047249/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com