如何确定一个按钮关闭哪一个警告框呢??用JS来触发的话

来源:4-4 警告框--JavaScript触发警告框

null__

2016-02-14 02:29

如何确定一个按钮关闭哪一个警告框呢??用JS来触发的话,给按钮绑定了事件,却没有绑定哪一个警告框。。。。

写回答 关注

3回答

  • 爱吃鱼的狐
    2016-05-30 17:02:17
    已采纳
    <div class="alert alert-warning" role="alert" id="myAlert">
        <h4>谨防被骗</h4>
        <p>请确认您转账的信息是你的亲朋好友,不要轻意相信不认识的人...</p>
        <button type="button"  class="btnbtn-danger" id="close">关闭</button>
    </div>
    <div class="alert alert-warning" role="alert" id="myAlert1">
        <h4>谨防被骗</h4>
        <p>1请确认您转账的信息是你的亲朋好友,不要轻意相信不认识的人...</p>
        <button type="button"  class="btnbtn-danger" id="close1">关闭</button>
    </div>
      <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
      <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
      <script>
         $(function(){
                $("#close").on("click",function(){
                    $(this).alert("close");
                });
                $("#close1").on("click",function(){
                    $(this).alert("close");
                });
              });
      </script>

    null__

    非常感谢!

    2016-06-01 15:56:35

    共 1 条回复 >

  • null__
    2016-02-14 20:01:16

    并没有用。。。

    <body>

    <div class="alert alert-warning" role="alert" id="myAlert1">

        <h4>谨防被骗</h4>

        <p>请...</p>

        <button type="button"  class="btn btn-danger" id="close1">关闭</button>

    </div>

        <div class="alert alert-warning" role="alert" id="myAlert2">

        <h4>谨防被骗</h4>

        <p>请...</p>

        <button type="button"  class="btn btn-danger" id="close2">关闭</button>

    </div>  

      <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>

      <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>

      <script>

        $(function(){

            $("#close1").on("click",function(){

                $(this).alert("close");  

            });       

            $("#close2").on("click",function(){

                $(this).alert("close");  

            }); 

    });

      </script>

    点击两个按钮都是关闭第二个警告框。。。


    null__ 回复西风潇潇

    666,是的,谢谢了!

    2016-06-13 16:57:47

    共 3 条回复 >

  • longdechuangren
    2016-02-14 17:44:39

    在警告框中加入关闭按钮

    null__

    不知道为啥回复不了你,不过我写在了问题下面。。。

    2016-02-14 20:03:42

    共 1 条回复 >

玩转Bootstrap(JS插件篇)

带领大家学习怎么使用JS自由控制Bootstrap中提供的组件

128653 学习 · 296 问题

查看课程

相似问题