Java web ch02_9

<!DOCTYPE html>
<!-- 程序ch02_9.html -->
<html>
<head>

<meta charset="UTF-8">
<title>单击按钮事件示例</title>
<script language="javascript">
function test(){
window.alert("事件引发一操作,并成功执行了这个操作!")
}
</script>
</head>
<body>
<form action="">
<input type="Button" value="警告对话框" onclick="test()"><br/>
</form>
</body>
</html>

原文地址:https://www.cnblogs.com/meng2/p/7618298.html