マウスをポップアップの上に置くとポップアップが表示され、マウスをウィンドウから離すと閉じるという単純なページを作成しようとしています。私のコードは非常に単純ですが、機能しません。
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 は動作しません。どうすればそれを行うことができますか?
前もって感謝します。