JS弹出对话框实现方法(三种方式)

时间:2021-05-26

本文实例讲述了JS弹出对话框实现方法。分享给大家供大家参考,具体如下:

1.警告框

<html><head><script type="text/javascript">function disp_alert(){alert("我是警告框!!")}</script></head><body><input type="button" onclick="disp_alert()" value="显示警告框" /></body></html>

2.确定取消框

<html><head><script type="text/javascript">function disp_confirm(){var r=confirm("按下按钮")if (r==true) { document.write("您按了确认!") }else { document.write("您按了取消!") }}</script></head><body><input type="button" onclick="disp_confirm()" value="显示确认框" /></body></html>

3.有输入的框

<html><head><script type="text/javascript">function disp_prompt(){var name=prompt("请输入您的名字","Bill Gates")if (name!=null && name!="") { document.write("你好!" + name + " 今天过得怎么样?") }}</script></head><body><input type="button" onclick="disp_prompt()" value="显示提示框" /></body></html>

希望本文所述对大家JavaScript程序设计有所帮助。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章