JavaScript學習筆記13

weixin_38720471發表於2020-10-19

window視窗物件

<script type="text/javascript">
		function testAlert(){
			alert("密碼長度大於6");//彈出警告視窗
		}
		function testConfirm(){
			var flag=window.confirm("確定要刪除學生嗎");//彈出確認視窗
			if(flag){
				alert("學生已經刪除");
			}
		}
		function testPrompt(){
			var score=window.prompt("請輸入分數");//彈出輸入視窗
			if(score){
				console.info(score);
			}
		}
		function openWin(){
			window.open("04使用函式實現計算器.html");//開啟新的頁面
		}
		function openWin2(){
			window.open("04使用函式實現計算器.html",null,"left=100,top=20,width=400,height=400");//開啟新的頁面,並設定屬性
		}
		function closeWin()//關閉視窗
		{
			window.close();
		}
	</script>

相關文章