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

WBOY
发布: 2016-06-24 11:41:48
原创
2467 人浏览过

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


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

alert("你好!");
登录后复制


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

if(confirm("还有继续吗?")){    alert("继续");}else{    alert("再见");}
登录后复制


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

var name = prompt("你的名字是:");alert("你好," + name);
登录后复制

完整的html代码:

      <meta http-equiv="Content-Type" content="text/html; charset=utf-8">    <meta name="content-type" content="text/html; charset=UTF-8">    <title>对话框测试</title>        <script>    	function confirmDialog(){			if(confirm("还要继续吗?")){	    		alert("继续");			}else{    			alert("再见");			}    	}    	    	function promptDialog(){    		var name = prompt("你的名字是:");			alert("你好," + name);    	}    </script>  	对话框测试:	<div style="margin-top:50px">		<input type="button" value="alert" onclick="alert('你好!')">		<input type="button" value="confirm" onclick="confirmDialog()">		<input type="button" value="prompt" onclick="promptDialog()">	</div>
登录后复制

(原创文章,转载请注明转自Clement-Xu的csdn博客。)



来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板