码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript点击按钮显示 确认对话框

时间:2014-07-01 19:32:08      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:http   java   os   javascript   html   cti   

//JavaScript点击按钮显示确认对话框
<html xmlns="http://www.w3.org/1999/xhtml">  
<head>  
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />  
<title>My First Script</title>  
<script type="text/javascript">  
function test() {  
    var result = confirm("Please make sure.");  
    if (result == true) {  
        alert("You choose YES! Great!");  
    } else {  
        alert("What a bitch you are !");  
    }  
}  
</script>  
</head>  
<body>  
    <input type="button" value="Click Me!" onClick="test();" />  
</body>  
</html>  

JavaScript点击按钮显示 确认对话框,布布扣,bubuko.com

JavaScript点击按钮显示 确认对话框

标签:http   java   os   javascript   html   cti   

原文地址:http://www.cnblogs.com/lyl6796910/p/3817084.html

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