共计 177 个字符,预计需要花费 1 分钟才能阅读完成。
1.写在行内
<input type="button" value="按钮" onclick="alert('Hello World')" />
2.写在script标签中
<head>
<script>
alert('Hello World!');
</script>
</head>
3.写在外部js文件中,在页面引入
<script src="main.js"></script>
正文完