我有一个分配给元素的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/

10-13 02:47