JavaScript練習題目(3)點選按鈕顯示確認對話方塊

鍾超發表於2011-11-17
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>My First Script</title>
<script type="text/javascript">
function test() {
	var result = confirm("Please make sure.");
	if (result == true) {
		alert("You choose YES! Great!");
	} else {
		alert("What a bitch you are !");
	}
}
</script>
</head>
<body>
	<input type="button" value="Click Me!" onClick="test();" />
</body>
</html>

相關文章