****效果圖****
有時候我們在打開一個網(wǎng)頁的時候會在打開網(wǎng)頁的同時在瀏覽器的左上角彈出一個廣告框粗俱,這里就可以使用window.open來實現(xiàn)
****語法:window.open([URL], [窗口名稱], [參數(shù)字符串])
window.open有三個屬性拉背,第一個是打開的網(wǎng)頁地址蜕企,第二個打開方式嘉赎,第三個設(shè)置打開的網(wǎng)頁樣式****
****打開方式有
_blank:在新窗口顯示目標(biāo)網(wǎng)頁
_self:在當(dāng)前窗口顯示目標(biāo)網(wǎng)頁
_top:框架網(wǎng)頁中在上部窗口中顯示目標(biāo)網(wǎng)頁****
****打開樣式:****
****代碼****
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<style>
.con{width:300px;height: 200px;margin: 0 auto;}
</style>
</head>
<body>
<div class="con"><h1>Hello</h1></div>
</body>
<script>
window.open('http://www.baidu.com','_blank','top=300,left=300,width=500,height=400')
</script>
</html>