qTip2问题

时间:2011-10-02 01:36:35

标签: javascript jquery qtip2

我有10个div。每个人都有一个属性data-tooltip="text here"

我会这样:

$('.my_div').qtip({
      content: $(this).attr('data-tooltip'),'bottom middle'
      },
      style: {
         tip: true,
         classes: 'ui-tooltip-red'
      }
    });

但它不起作用。如何在不使用.qtip函数编写十倍代码的情况下获取每个div的工具提示文本?

1 个答案:

答案 0 :(得分:1)

看起来您需要使用.each()循环。

这样的事情:

$('.my_div').each(function(){
    $(this).qtip({
        content: $(this).attr('data-tooltip'),
        style: {
            tip: true,
            classes: 'ui-tooltip-red'
        }
    });
});