关不了呀!!
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>javascript</title> <script type="text/javascript"> function context() { var mychar="I love U!" alert(mychar); } function a1(){ var mywin=window.open("http://www.imooc.com" ,'_blank','width=300,height=200,menubar=no,toolbar=no, status=no,scrollbars=yes');} function a2(){ mywin.close(); } </script> </head> <body> <form> <input type="button" value="点击我" onclick="context()" /> <br> <input type="button" onclick="a1()" value="打开窗口" /> <input type="button" onclick="a2()" value="关闭窗口" /> </form> </body> </html>
浏览器火狐,打开就关不了