下面是測試頁面alert_demo.html源代碼
<html>
<head>
<title>Alert</title>
<script type="text/javascript">
function testAlert(){
alert("測試Alert");
}
function testConfirm(){
confirm("你喜歡自動化測試嗎?");
}
function testPrompt(){
var content = prompt("你為什么喜歡自動化?");
document.write(content);
}
</script>
</head>
<body>
<h2>Test Alert</h2>
<input type="button" value="alert" onclick="testAlert()" id="alert"/>
<input type="button" value="confirm" onclick="testConfirm()" id="confirm"/>
<input type="button" value="prompt" onclick="testPrompt()" id="prompt"/>
</body>
</html>