码迷,mamicode.com
首页 > 其他好文 > 详细

确认对话框 演示

时间:2015-03-04 16:46:26      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:

<html>
	<head>
		<title>确认对话框 演示</title>
	</head>
	<style>
		div{font-size:30px;}
	</style>
	<script>
function testConfirm(){
	var confirmed = window.confirm("真的要删除对象吗?");
	if(confirmed){
		document.getElementById("msg").innerHTML = 
			"删除成功!";
	}
}
function testPrompt(){
	var msg = window.prompt("输入信息:");
	document.getElementById("msg").innerHTML = msg;
}
	</script>
	<body>
		确认对话框 演示:
		<input type="button" value="测试确认框" 
			onclick="testConfirm()">		
		<input type="button" value="测试输入框" 
			onclick="testPrompt()">
		<div id="msg"></div>
	</body>
</html>

  

 

 

确认对话框 演示

标签:

原文地址:http://www.cnblogs.com/a757956132/p/4313514.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!