gpt4 book ai didi

javascript - 如何使用 QTip 访问触发元素?

转载 作者:行者123 更新时间:2023-12-01 02:23:32 26 4
gpt4 key购买 nike

我有一个 QTip 分配给一个元素,如下所示:

$('#myDiv').qtip({
show: { when: { event: 'click', } },
hide: { when: { event: 'unfocus' } },
style: {
border: {
width: 5,
radius: 10
},
padding: 10,
textAlign: 'center',
tip: true, // Give it a speech bubble tip with automatic corner detection
name: 'red' // Style it according to the preset 'cream' style
},
position: {
corner: {
tooltip: 'topMiddle', // Use the corner...
target: 'bottomMiddle' // ...and opposite corner
}
},
content: {
text: self.parent('.qtip').html(),
title: { text: 'My Title' }
},

});

在“内容”中的“文本”下,我试图访问点击后触发此 QTip 的元素的 innerHTML。

但是,如上所示,我当前的 self.parent('.qtip').html() 方法不起作用。

执行此操作的标准方法是什么?谢谢。

最佳答案

我后来找到了这个问题的解决方案。

要访问触发 QTip 的元素的属性,必须按以下方式构建代码:

$("#container a").each(function() { 
$(this).qtip({ // QTip code });
});

这样,就可以使用 $(this) 来访问数据,例如触发 QTip 的元素的 innerHTML。

关于javascript - 如何使用 QTip 访问触发元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8772647/

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