實際上我沒有任何與此相關的代碼,因爲它完全是假想的,但我只是想知道它會是多麼簡單做。例如,我有一個4格的標準表格。HTML/CSS/Javascript - 當將鼠標懸停在不同的單元格上時,更改一個表格單元值
<html>
<head></head>
<body>
<table>
<tr>
<td>Cell 1</td>
</tr>
<tr>
<td>Cell 2</td>
</tr>
<tr>
<td>Cell 3</td>
</tr>
<tr>
<td>Cell 4</td>
</tr>
</table>
</body>
</html>
現在我想將鼠標懸停在單元格2上並在單元格3中顯示圖像...這可能使用JavaScript嗎?
是jQuery的替代? – mattytommo 2013-03-18 13:12:39
當然,它可能在JS中。你試過什麼了? – techfoobar 2013-03-18 13:12:44
你可以添加一個http://jsfiddle.net/ – howderek 2013-03-18 13:14:26