> 웹 프론트엔드 > HTML 튜토리얼 > html页面的简单对话框(alert, confirm, prompt)_html/css_WEB-ITnose

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

WBOY
풀어 주다: 2016-06-24 11:41:48
원래의
2494명이 탐색했습니다.

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으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿