<div> <button>开始</button> </div> <script> alert("刷新") </script>添加一下代码,点击按钮再弹窗
时间: 2023-11-14 09:07:00 浏览: 84
DIV+CSS+JQUERY源码实例
可以尝试以下代码:
```
<div>
<button onclick="showAlert()">开始</button>
</div>
<script>
function showAlert() {
alert("刷新");
}
</script>
```
当点击按钮时,会触发 `showAlert()` 函数,该函数会弹出一个包含 "刷新" 的提示框。
阅读全文