<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>标题JavaScript处理DOM事件</title>
<script type="text/javascript">
function hello(){
alert("why do you click here?");
}
</script>
</head>
<body>
<input type="button" value="click here!" οnclick="hello()"/>
</body>
</html>