我想在鼠標懸停在圖像上時更改css屬性。不幸的是,它似乎沒有工作,所以我測試了簡單的JavaScript用的onmouseover屬性:Javascript函數不支持onmouseover屬性
<script type="text/javascript">
function show_alert() { document.alert("Alert"); }
</script>
和
<div class="test" onmouseover="show_alert()">
....
</div>
但是當我移動鼠標移到這個div塊,什麼都沒有發生,並有點難以調試 裏面發生了什麼。我該如何解決這個問題?
btw,'文件'作爲沒有屬性稱爲'警報'。它是'window.alert()'!或乾脆'alert('hello');' – balexandre 2012-04-16 08:11:53