,因爲我是新來的jQuery我想問下面,我有一個這樣的表:獲取取決於x和y一表的單元格的值座標
<table id="lettersGrid" border="1">
<tr>
<td>..</td>
<td>..</td>
<td>..</td>
</tr>
<tr>
<td>..</td>
<td>..</td>
<td>..</td>
</tr>
</table>
我想使用jQuery以獲取特定單元格的值取決於它的x和y位置,所以我有
$("td").mouseover(function(){
x=this.parentNode.rowIndex; //get the x coordinate of the cell
y=this.cellIndex; //get the y coordinate of the cell
//??whats next??
});
任何幫助嗎?
開始你並不需要他們如果你想要的只是獲得值 - 只需使用鼠標懸停事件中已有的「this」引用 – BonyT