js如何创建和关闭窗口
1、window.open()方法对应于创建浏览器窗口第一参数是url是其实讲白了就是网址第二参数是一个名字你可以自己命名第三 窗口的属性例如宽度和高度
2、window.close()则是关闭窗口的方法
3、下面代码你可以用一下试试:<!DOCTYPE html><html><head> <meta http-equiv="ContentType" content="text/html;charset=utf-8"> </head><body><!--<input type="button" value="button"/>--><h1>Create a new Window</h1><hr><p>Use the buttons below to test opening</p><hr><form name="winform"><input type="button" value="Open New Window"onClick="NewWin=window.open('','NewWin','toolbar=no,status=no,width=200,height=100');"/><!--这个按钮是创建一个窗口--><p><input type="button" value="Close New Window"onClick="NewWin.close();"/><!--这个按钮创建的·一个窗口被关闭--></p><p><input type="button" value="Close New Window"onClick="window.close();"/><!--这个按钮创建的·一个窗口被关闭--></p></form><br><p>have Fun</p></body></html>
4、在这里url你可以输入百度网址试试