twitter bootstrap dropdown doesn't toggle closed when it should

后端 未结 8 975
伪装坚强ぢ
伪装坚强ぢ 2021-02-10 00:16

Oh man, I\'ve been tearing my hair out over this. 4 hours on a dropdown.

I\'m using Twitter Bootstrap.

The fixed nav at the top has a dropdown, pretty standard s

相关标签:
8条回答
  • 2021-02-10 01:09

    You can also add propagate click event from the parent page with this code (fixed the same issue for me):

    var myFrameContents = document.getElementById("frame").contentWindow.document;
    myFrameContents.body.addEventListener("click", function() {
        document.body.click();
    });
    
    0 讨论(0)
  • 2021-02-10 01:15

    This is the full solution I implemented based on merv's great answer. If there is a better way for me to post the solution for those coming in the future please let me know.

    This jquery was added to the bottom of the html of the pages in the frame:

    $('html').on('click', function () {
      parent.$('#frame').trigger('click');
    });
    

    The dropdown was switched to a button and restyled to fit into the navbar. In the html:

                    <li class="btn-group" id="samplebtn">
                        <a href="#" class="btn btn-primary dropdown-toggle" role="button" data-toggle="dropdown">
                            <i class="icon-pencil icon-white"></i>
                            Sample
                            <b class="caret"></b>
                        </a>
    

    In the CSS:

            #samplebtn {
            position:absolute;
            top: 0;
            margin: 0px;
            padding: 0px;
            border: 0px;
            }
            #samplebtn .btn {
                border: 0px;
            }
    

    full code of solution (update of the full code in the question - this is the outside frame only):

    <!DOCTYPE html>
    <html lang="en">
        <head>
            <meta charset="utf-8">
            <title>test</title>
            <!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
            <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]-->
            <!-- Le styles -->
            <link href="./css/bootstrap.css" rel="stylesheet">
            <style>
                iframe {
                    border: 0px;
                    height: 95%;
                    left: 0px;
                    position: absolute;
                    top: 50px;
                    width: 100%;
                }
                #samplebtn {
                position:absolute;
                top: 0;
                margin: 0px;
                padding: 0px;
                border: 0px;
                }
                #samplebtn .btn {
                    border: 0px;
                }
            </style>
        </head>
        <body>
            <div class="navbar navbar-fixed-top">
                <div class="navbar-inner">
                    <div class="container">
                        <a class="brand" target="mainframe" href="./home.html">
                           Brand
                        </a>
                        <ul class="nav">
    
                            <li class="btn-group" id="samplebtn">
                                <a href="#" class="btn btn-primary dropdown-toggle" role="button" data-toggle="dropdown">
                                    <i class="icon-pencil icon-white"></i>
                                    Sample
                                    <b class="caret"></b>
                                </a>
                                <ul class="dropdown-menu" role="menu">
                                    <li>
                                        <a target="mainframe" href="./home.html#">One</a>
                                    </li>
                                    <li>
                                        <a target="mainframe" href="./home.html#">Two</a>
                                    </li>
                                    <li>
                                        <a target="mainframe" href="./home.html#">Three</a>
                                    </li>
                                    <li>
                                        <a target="_blank" href="#">Four
                                            <i class="icon-share-alt"></i>
                                        </a>
                                    </li>
                                    <li>
                                        <a target="_blank" href="#">Five
                                            <i class="icon-share-alt"></i>
                                        </a>
                                    </li>
                                </ul>
                            </li>
                            <li>
                                <a href="#">
                                    <i class="icon-certificate icon-white"></i>Stuff</a></li>
                            <li>
                                <a href="#">
                                    <i class="icon-globe icon-white"></i>Things</a></li>
                            <li>
                                <a target="mainframe" href="./home.html">
                                    <i class="icon-film icon-white"></i>Nothing</a></li>
                        </ul>
                    </div>
                </div>
            </div>
            <div class="container">
                <iframe id="frame" name="mainframe" src="./home.html"></iframe>
                <!-- /container -->
            </div>
            <!-- Le javascript==================================================-->
            <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
    
            <script src="./js/bootstrap.js"></script>
            <script type="text/javascript">
                $(document).ready(function () {
                    $('.dropdown-toggle').dropdown();
                    var frameheight = window.innerHeight - 50;
                    document.getElementById("frame").style.height = frameheight + "px";
                });
    
                $(window).resize(function () {
                    var frameheight = window.innerHeight - 50;
                    document.getElementById("frame").style.height = frameheight + "px";
                });
    
                $('.dropdown-menu').on('click', function () {
                  $('.dropdown-toggle').dropdown();
                });
            </script>
        </body>
    </html>
    

    for complete reference, this is the code of a page inside the frame:

    <!DOCTYPE html>
    <html lang="en">
    
        <head>
            <meta charset="utf-8">
            <title>Title</title>
    
            <!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
            <!--[if lt IE 9]>
                <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
            <![endif]-->
            <!-- Le styles -->
            <link href="./bootstrap.min.css" rel="stylesheet">
            <style>
    
            </style>
        </head>
    
        <body onload="scrollTo(0,0); $('#loading').css('display','none');">
            <div id="loading" style="width: 100%; height: 100%; background-color: white; background-image:url('loader.gif'); background-repeat:no-repeat; background-position: center center; position:fixed; display: none; z-index:100;"></div>
            <script type="text/javascript">
                document.getElementById("loading").style.display = 'block';
            </script>
    
    
            <div class="container">
            <div class="span12">
                        <h2>Project Description</h2>
                        <p>Lorem Ipsum Dolor Sit Amet</p>
    
    
                    </div>
    
                <!-- /container -->
            </div>
            <!-- Le javascript==================================================-->
    
            <script src="./jquery.js"></script>
            <script src="./bootstrap.min.js"></script>
    <!--        <script src="./bootstrap-dropdown.js"></script>
    -->
    <script>
    $('html').on('click', function () {
      parent.$('#frame').trigger('click');
    });
    
    </script>
    
        </body>
    
    </html>
    

    Fixed testing site you can preview at (but don't copy the whole page code, as it has some server side (cloudflare) stuff in it). http://www.joshlevent.com/dropdownbug/

    0 讨论(0)
提交回复
热议问题