下面是测试页面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>