原生函数
<input onclick="alert('我是警告框')" type="button" value="点击我,弹出警告框" />
自定义函数
<body>
<input onclick="myAlert()" type="button" value="点击我,弹出警告框" />
</body>
<script>
function myAlert(){
alert("我是警告框");
}
</script>
<input onclick="alert('我是警告框')" type="button" value="点击我,弹出警告框" />
<body>
<input onclick="myAlert()" type="button" value="点击我,弹出警告框" />
</body>
<script>
function myAlert(){
alert("我是警告框");
}
</script>