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>
👋 感谢您的观看!
© 版权声明
THE END
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>
👋 感谢您的观看!