我已經在jquery selectors之間搜索了一段時間,但找不到解決我的問題的任何解決方案。複雜的jquery選擇器:挑戰
我有一個由foreach提交的html表格。在每一行中,有幾個鏈接彈出工具提示。我的問題:找不到合適的選擇器。
<table>
<?php foreach($article) :?>
<tr>
<td>
<div class="none" style="display:none;">
<div class="tooltip_1">
"The content of my tooltip_1"
</div>
<div class="tooltip_2">
"The content of my tooltip_2"
</div>
</div>
<div class="cell">
<a href="#" class="link_to_tooltip_1">a link</a>
<a href="#" class="link_to_tooltip_2">a link</a>
</div>
</td>
<tr>
<?php endforeach; ?>
</table>
爲了顯示我的提示,我用qTip,和它的工作原理是這樣的:
$('a[class="link_to_tooltip_1"]').qtip({
content: $('jquery selector'),
(... other options)
});
所以basicaly,我需要像
content: $('self.parentNode.parentNode > div[class="none"] > div[class="tooltip_1"]'),
換句話說
:
- 從鏈接「link_to_tooltip_ 1"
- 回去父格‘細胞’
- 回到父母TD
- 然後去兒童格‘無’
- 最後選擇孩子格‘tooltip_1’
謝謝很多。
我想知道如果`qtip`可以使用錨作爲工具提示的標題屬性?這應該。 – 2011-01-26 11:38:42