2010-12-09 57 views
0

我有一箇中繼器元素的ID,並且每行會顯示一個工具提示,每個工具提示將包含行ID,這是我的代碼:獲取引發該jQuery函數

$(document).ready(function() { 
     $('tr.SomeClass').qtip({ 
      content: { 
         text: // here I want to get the id of the row 
      }, 
+1

請問您可以發佈一些html代碼 – svk 2010-12-09 09:37:17

+0

`qtip()`不是jQuery庫的一部分,請包含您正在使用的插件的鏈接。 – 2010-12-09 09:37:30

回答

3

您需要使用.each()遍歷的元素在這裏,像這樣:

$(document).ready(function() { 
    $('tr.SomeClass').each(function() { 
    $(this).qtip({ 
     content: { 
      text: "My ID is: " + this.id 
     } 
    }); 
    }); 
}); 

用這種方法,this指的是每個tr.SomeClass元素,當您去,而不是你在(以前document任何情況下,因爲你是在一個document.ready處理程序)。