好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

html页面的简单对话框(alert,confirm,prompt)_html/css_WEB-IT

html页面简单的三种对话框如下:


1、alert(),最简单的提示框:

alert("你好!"); 


2、confirm(),有确认和取消两个按钮:

if(confirm("还有继续吗?")){    alert("继续");}else{    alert("再见");} 


3、prompt(),可以输入信息:

var name = prompt("你的名字是:");alert("你好," + name); 

完整的html代码:

                    对话框测试              	function confirmDialog(){			if(confirm("还要继续吗?")){	    		alert("继续");			}else{    			alert("再见");			}    	}    	    	function promptDialog(){    		var name = prompt("你的名字是:");			alert("你好," + name);    	}         	对话框测试:	

查看更多关于html页面的简单对话框(alert,confirm,prompt)_html/css_WEB-IT的详细内容...

  阅读:43次