我有以下的html代碼:與超鏈接使用jQuery
<table id="MatrixTable">
<tr>
<td id="321"> 0 </td>
</tr>
</table
答:我如何可以替換的超鏈接的「0」文本時,鼠標懸停使用jQuery像下面這樣:
<table id="MatrixTable">
<tr>
<td id="321">
<a class="modal-dialog-link" href="Edit?matrixID=321" updatefunction="UpdateMatrix">
0
</a>
</td>
</tr>
</table>
$("table#MatrixTable td").mouseover(function() {
// doing something here...
});
B.我怎麼能回到原來的「0」時,鼠標離開與jQuery像下面這樣:
$("table#MatrixTable td").mouseleave(function() {
// doing something here...
});
釷anks。
爲什麼你希望他們只能與鼠標懸停鏈接。這在我眼中是沒有意義的。 – HerrSerker