码迷,mamicode.com
首页 > Web开发 > 详细

HTML DOM confirm()方法使用

时间:2015-05-04 23:57:58      阅读:683      评论:0      收藏:0      [点我收藏+]

标签:

confirm()方法用于显示一个带有特点消息的确定和取消的对话框,当用户点击确定时confirm()方法返回true,当用户点击取消时confirm()方法返回false.

1. 触发事件时使用

<html>
    <head>
        <meta http-equiv="content-type" content="text/html;charset=utf-8"/>
        <script type="text/javascript" src="jquery-1.9.1.js"></script>
        <script type="text/javascript">
            $(function() {
                
                $("input[value").click(function() {
                    if(confirm("你确定触发事件?")) {
                        /*
                         *当点击对话框的确定按钮时,返回true时执行业务逻辑
                             *如果直接将click()直接绑定在按钮,即:<input onclick="change();"/>
                         *方法需要返回值
                            */
                        alert("你已经确定触发事件了。。。");
                    }
                });
                
                $("#con").click(function() {
                    if(confirm("你确定触发链接上的事件吗?")) {
                        $("#con").attr("href","http://www.baidu.com");
                    }
                });
                
            });
        </script>
    </head>
    <body>
        <input type="button" value="测试confirm()方法"/>
        <br/><br/>
        <a href="" id="con" target="_blank">连接上使用confirm()方法</a>
    </body>
</html>

 

 

 

 

HTML DOM confirm()方法使用

标签:

原文地址:http://www.cnblogs.com/shi-blog/p/4477699.html

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