0
我有一箇中繼器元素的ID,並且每行會顯示一個工具提示,每個工具提示將包含行ID,這是我的代碼:獲取引發該jQuery函數
$(document).ready(function() {
$('tr.SomeClass').qtip({
content: {
text: // here I want to get the id of the row
},
我有一箇中繼器元素的ID,並且每行會顯示一個工具提示,每個工具提示將包含行ID,這是我的代碼:獲取引發該jQuery函數
$(document).ready(function() {
$('tr.SomeClass').qtip({
content: {
text: // here I want to get the id of the row
},
您需要使用.each()
遍歷的元素在這裏,像這樣:
$(document).ready(function() {
$('tr.SomeClass').each(function() {
$(this).qtip({
content: {
text: "My ID is: " + this.id
}
});
});
});
用這種方法,this
指的是每個tr.SomeClass
元素,當您去,而不是你在(以前document
任何情況下,因爲你是在一個document.ready
處理程序)。
請問您可以發佈一些html代碼 – svk 2010-12-09 09:37:17
`qtip()`不是jQuery庫的一部分,請包含您正在使用的插件的鏈接。 – 2010-12-09 09:37:30