其他分享
首页 > 其他分享> > js:常用的3种弹出提示框(alert、confirm、prompt)

js:常用的3种弹出提示框(alert、confirm、prompt)

作者:互联网

函数定义

function alert(message?: any): void
function confirm(message?: string): boolean
function prompt(message?: string, _default?: string): string

使用示例

1、提示框 alert

// 没有返回值
alert('你好');

在这里插入图片描述

2、确认框 confirm

// 返回 false/true
let res = confirm('确定删除?');
console.log(res);

在这里插入图片描述

3、输入框 prompt

// 返回用户输入的值或null, 第二个值为指定的默认值(可选)
var ret = prompt('请输入您的年龄', 23);
console.log(ret);

在这里插入图片描述

参考
JavaScript中常用的3种弹出提示框(alert、confirm、prompt)

标签:提示框,prompt,string,confirm,js,message,alert
来源: https://blog.csdn.net/mouday/article/details/122272486