13.1 window.open 参考答案: 这个方法是用来打开新窗口的 最基本的弹出窗口 window.open('page.html'); 经过设置后的弹出窗口 window.open('page.html', 'newwindow', 'height=100, width=400, top=0, left=0, toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no') //该句写成一行代码 //参数解释:...