0
我需要使用class="tip"
(例如「此處爲某個數字」)將qtip工具提示文本等於每個標籤的值。最好不使用ID。獲取沒有ID(和qtip)的標籤的innerHTML
<a class="tip">some number here</a>
<script type="text/javascript">
$('.tip').each(function() {
$(this).qtip({
content: {
text: "tooltip here"
}
})
})
</script>
所以我只是$(本)的.text ..感謝的人後失蹤的括號內。 – user3332418