我需要使用class="tip"
将qtip工具提示文本等于每个标记的值(例如“此处为某个数字”)。最好不要使用ID。
<a class="tip">some number here</a>
<script type="text/javascript">
$('.tip').each(function() {
$(this).qtip({
content: {
text: "tooltip here"
}
})
})
</script>
答案 0 :(得分:1)
<a class="tip">some number here</a>
<script type="text/javascript">
$('.tip').each(function() {
var tipNumber = $(this).text();
$(this).qtip({
content: {
text: tipNumber;
}
})
})
</script>
答案 1 :(得分:0)
要访问触发QTip的元素的属性,必须以这种方式构造代码:
$("#container a").each(function() {
$(this).qtip({ // QTip code });
});
这样,可以使用$(this)来访问触发QTip的元素的innerHTML等数据。
这是一个有效的代码:http://jsfiddle.net/fDavN/2501/