javascript学习笔记(十六) 系统对话框(alert、confirm、prompt)_基础知识 程序员文章站 2022-05-19 14:38:07 ... 1.警告框alert() 复制代码 代码如下: alert("欢迎光临!"); 2.信息框confirm(),有取消,确定按钮 复制代码 代码如下: if (confirm("你同意吗?")) { alert("同意"); } else { alert("不同意"); } 3.提示框prompt(),用于提示用户输入一些文本 复制代码 代码如下: var result = prompt("您尊姓大名?"," "); if (result !== null) { alert(“欢迎光临,”+result); } 相关标签: alert confirm prompt 上一篇: PHP的Yii框架入门使用教程_php实例 下一篇: nginx - Zend Guard Loader 可以加速处理PHP程序吗? 推荐阅读 javascript学习笔记(十六) 系统对话框(alert、confirm、prompt)_基础知识 javascript学习笔记(十六) 系统对话框(alert、confirm、prompt)_基础知识