0
我有這樣的代碼:的onmouseout在父親打電話時的onMouseOver兒童
<div id='father' style='width:50px; height:50px;overflow:hidden;' onMouseOut="alert('called');">
<div id='container' style='margin-top:0px;width:100%;height:100%;transition: margin 2s;'>
<div style='width: 50px;height:50px;background-color:rgb(255,0,0);' onClick="document.getElementById('container').style.marginTop='-50px'"></div>
<div style='width: 50px;height:50px;background-color:rgb(0,0,255);' onClick="document.getElementById('container').style.marginTop='0px'"></div>
</div>
</div>
如果您點擊紅色框,藍色框將從底部...時出現的onMouseOver藍色框被稱爲,onMouseOut從父親也被稱爲...
你知道一個解決方法,如果鼠標仍然在「父親」裏面看不到警報。
正是我需要的:d就像一個魅力!謝謝。 –