zoukankan      html  css  js  c++  java
  • click event not triggered on bootstrap modal

    I am trying to catch the click event when save changes is pushed.

    For some reason i can't catch the click event.

    Why?

    <script>
                $('#inviteRequest').click(function(){
    //                e.preventDefault();
                    console.log(1);
                    $('#myModalInviteDestination').modal('hide');
                });
    
            </script>
    
            <!-- Modal -->
            <div class="modal fade" id="myModalInviteDestination" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
                <div class="modal-dialog">
                    <div class="modal-content">
                        <div class="modal-header">
                            <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
                            <h4 class="modal-title" id="myModalLabel">Enter your friends email address</h4>
                        </div>
                        <div class="modal-body">
                            <textarea rows="5" cols="68" name="invites"></textarea>
                            <div>use ; as delimiter</div>
                        </div>
                        <div class="modal-footer">
                            <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
                            <button type="button" class="btn btn-primary" id="inviteRequest">Save changes</button>
                        </div>
                    </div><!-- /.modal-content -->
                </div><!-- /.modal-dialog -->
            </div><!-- /.modal -->



    Answers

    You need to wrap this in a document.ready:

    $(function() {
        $('#inviteRequest').click(function(){
            console.log(1);
            $('#myModalInviteDestination').modal('hide');
        });
    });

    Your element #inviteRequest does not exist at the time you try to add an event handler to it. You need to wait for the page to load first. My code is the equivalent to $(document).ready(); 

  • 相关阅读:
    随手记几个容易被忽略的bug
    fiddler常见应用场景
    浅谈软件测试流程
    http抓包实战之http协议初始、fiddler初识
    http之header详解
    http协议基础(一)
    Fiddler抓包工具总结二(转自小坦克)
    接口测试总结
    [Python][爬虫]利用OCR技术识别图形验证码
    [总结]JS在Selenium中的使用
  • 原文地址:https://www.cnblogs.com/sdream/p/5417637.html
Copyright © 2011-2022 走看看