我想要一張表格,鼠標移動時會自行更改,並在鼠標移出時更改回原始。在這裏,最好的我可以這樣做:更改鼠標移過來的文字,並將鼠標移出鼠標
<html>
<body>
<div id="line1">
<table onmouseover="showMore()" border="1">
<tr>
<td>this is sick</td>
</tr>
</table>
</div>
<script>
function showMore(){
document.getElementById("line1").innerHTML = "<table border='1' onmouseout='showLess()'><tr><td>this is awesome</td></tr></table>";
}
function showLess(){
document.getElementById("line1").innerHTML = "<table border='1' onmouseover='showMore()'><tr><td>this is sick</td></tr></table>";
}
</script>
</body>
</html>
但是,有時,當我移動鼠標時,裏面的仍然是內容不改回原來的。有一個更好的方法嗎?
謝謝!
這是偷偷摸摸的,我喜歡它 – dougmacklin 2012-09-20 01:54:13