我的代码不起作用。目前,鼠标悬停部分正在工作,但没有鼠标移出。
这是我的代码:
<script type="text/javascript">
function changeBtn(x){
x.style.marginTop="50px";
}
function returnBtn(y){
y.style.marginTop="-50px";
}
<ul>
<li> <a href="home.html" target="some_page"><img src="images/home.gif" alt="home" onmouseover="changeBtn(this)" onmouseout="returnBtn(this)"></a></li>
</ul>
Firebug 在第 6 行显示错误:“marginTop 被忽略”