JavaScript中的Window物件(開啟新的視窗)

pangqiandou發表於2017-09-13
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>JavaScript中的Window物件(開啟新的視窗)</title>
<script type="text/javascript">
function fun(thisurl){
//window是Javascript的一個最常用的物件,表示瀏覽器當前視窗的最頂級(最上層)的一個物件
//alert這個函式其實就是這個物件的函式
//open函式:在當前視窗開啟一個新視窗,開啟的視窗的地址:url ,標題
//width:視窗的寬度,height:視窗的高度,scrollbars:是否有滾動條,resizable:滾動條大小是否可以改變
window.open(thisurl, "頁面標題", "width=470,height=150,scrollbars=yes,resizable=no");
}
</script>
</head>
<body>
<form action="" method="post" name="myform">
網址:<select name="url" id="url" onchange="fun(this.value)">
<option value="event.html" selected>event</option>
<option value="event2.html">event2</option>
<option value="event3.html">event3</option>
</select>
</form>
</body>
</html>

相關文章