js点击按钮弹出提示框
时间: 2023-11-27 07:05:12 浏览: 132
引用中提到了几种弹出提示框的方法,包括confirm()、alert()和prompt()。其中,confirm()函数会弹出一个带有确定和取消按钮的确认框,alert()函数会弹出一个警告框,而prompt()函数会弹出一个提示框,可以用于接收用户的输入。
在这个例子中,当点击按钮时,会调用myconfirm()函数,该函数内部使用了confirm()函数来显示确认框。如果用户点击了确定按钮,就会执行1,即输出"您选择了确定";如果用户点击了取消按钮,就会执行2,即输出"您选择了取消"。
如果你想使用alert()函数来弹出警告框,可以像下面这样使用:
```
<script>
function myalert() {
alert("成功弹出警告框!");
}
</script>
<button onclick="myalert()">点击我弹出警告框</button>
```
如果你想使用prompt()函数来弹出提示框,并获取用户的输入,可以像下面这样使用:
```
<script>
function myprompt() {
var name = prompt("我最喜欢的球员是:", "paul");
if (name == null || name == "") {
var content_null = "该用户取消了输入";
document.write(content_null);
} else {
document.write(name + "牛逼");
}
}
</script>
<button onclick="myprompt()">点击我弹出提示框</button>
```
阅读全文