html5点击按钮弹窗
时间: 2023-07-04 12:20:11 浏览: 124
点击按钮弹出窗口
您可以通过以下代码实现在HTML5中点击按钮弹窗:
HTML部分:
```html
<button onclick="alert('Hello World!')">点击弹窗</button>
```
JavaScript部分:
```html
<script>
function myFunction() {
alert("Hello World!");
}
</script>
<button onclick="myFunction()">点击弹窗</button>
```
这两种方法都会在点击按钮时弹出一个带有“Hello World!”消息的弹窗。您可以根据需要更改弹窗中的消息。
阅读全文