JS之BOM程式設計window的open和close
阿新 • • 發佈:2020-09-11
程式碼示例
test.html:
<body> <input type="button" value="從新視窗開啟百度" onclick="window.open('http://www.baidu.com')" /> <input type="button" value="從當前視窗開啟百度" onclick="window.open('http://www.baidu.com', '_self')" /> <input type="button" value="從新視窗開啟百度" onclick="window.open('http://www.baidu.com', '_balck')" /> <input type="button" value="從父視窗開啟百度" onclick="window.open('http://www.baidu.com', '_parent')" /> <input type="button" value="從頂級視窗開啟百度" onclick="window.open('http://www.baidu.com', '_top')" /> <input type="button" value="開啟index檔案" onclick="window.open('index.html')" /> </body>
index.html:
<body>
這是index檔案<br />
<input type="button" value="關閉index檔案" onclick="window.close()" />
</body>
點選開啟index檔案按鈕: