我有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的工具提示文本?
答案 0 :(得分:1)
看起来您需要使用.each()
循环。
这样的事情:
$('.my_div').each(function(){
$(this).qtip({
content: $(this).attr('data-tooltip'),
style: {
tip: true,
classes: 'ui-tooltip-red'
}
});
});