我正在尝试做一个简单的页面,当您将鼠标放在弹出窗口上时,当您将鼠标移出窗口时,它会关闭。我的代码很简单,但不起作用。
article class="news" onmouseover="openWindow();" >
#some html code here
</article>
和javascript代码:
<script type="text/javascript">
function openWindow(){
mywin=window.open('','','width=200,height=100, left=650 top=300');
mywin.document.write("<p>This is 'myWindow'</p>");
mywin.document.setAttribute('onmouseout="closeWindow();"')
}
function closeWindow(){
mywin.close();
}
</script>
所以 openWindow() 工作正常,但 closeWindow 不能。关于我该怎么做的一些想法?
提前致谢。