|
藍森林 http://www.lslnet.com 2006年8月25日 8:28
表格用為什麼點擊會由灰變白?
[url=http://www.blackbalance.com/apple/our_favourite.asp]地址
就是「最新音樂」下的表格。 |
在TD裡加了onmouseover ,onmouseout事件,看看源代碼就知道了。 |
鼠標事件變換表格背景色
[html]
<table>
<tr>
<td width="350" height="20" valign="middle" bgcolor="#F2F5F9" onMouseOver="this.style.backgroundColor='#ffffff'"
onMouseOut="this.style.backgroundColor='#F2F5F9'"><img src="images/book.gif" width="10" height="11"><span class="pt9">
<a href="show_music_num.asp?m_id=41" target="_blank">仲有最靚既豬腩肉</a></span></td>
</tr>
</table>
[/html] |
|