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 的工具提示文本?
I have 10 divs. Each one has an attribute data-tooltip="text here"
.
I would something like:
$('.my_div').qtip({
content: $(this).attr('data-tooltip'),'bottom middle'
},
style: {
tip: true,
classes: 'ui-tooltip-red'
}
});
But it doesn't work. How can I get the tooltip text for each div without writing ten times the code with .qtip
function?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来您需要使用
.each()
进行循环。像这样的事情:
It looks like you need to loop with
.each()
instead.Something like this: