点击任意屏幕,使菜单消失

时间:2014-10-13 07:35:29

标签: javascript jquery html css drop-down-menu

嗨我有这个代码,除了我点击屏幕上的任何地方以使下拉菜单内容消失后,我无法重新打开菜单。下面是代码,我将使用下面的jsfiddle演示。



$(document).click(function (e)
{

  var container = $(".dropdown_content");

   if (!container.is(e.target) && container.has(e.target).length === 0)
  {
 container.fadeOut('slow');

   }

});

.dropdown {
    display: block;
    display: inline-block;
    margin: 0px 3px;
    position: relative;
}

/* ===[ For demonstration ]=== */

.dropdown { margin-top: 50px }

/* ===[ End demonstration ]=== */

.dropdown .dropdown_button {
    cursor: pointer;
    width: auto;
    display: inline-block;
    padding: 4px 5px;
    font-weight: bold;
    color: #000;
    line-height: 16px;
    text-decoration: none !important;
}

.dropdown input[type="checkbox"]:checked +  .dropdown_button {
    color: #000;
    padding: 4px 5px;
}

.dropdown input[type="checkbox"] + .dropdown_button .arrow {
    display: inline-block;
    width: 0px;
    height: 0px;
    border-top: 5px solid #fff;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
}

.dropdown input[type="checkbox"]:checked + .dropdown_button .arrow { border-color: white transparent transparent transparent }

.dropdown .dropdown_content {
    position: absolute;
    border: 1px solid #fff;
    padding: 0px;
    margin: 0;
    display: none;
    padding: 7px;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
     -o-transition: all 500ms ease-in-out;
     -ms-transition: all 500ms ease-in-out;
      transition: all 500ms ease-in-out;
    -webkit-box-shadow: rgba(0, 0, 0, 0.58) 0px 12px 25px;
    -moz-box-shadow: rgba(0, 0, 0, 0.58) 0px 12px 25px;
    box-shadow: rgba(0, 0, 0, 0.58) 0px 12px 25px;
     background: #fff;
     font-size: 12px;
     -moz-border-radius: 0 0 4px 4px;
      -webkit-border-bottom-right-radius: 4px;
      -webkit-border-bottom-left-radius: 4px;
     border-radius: 0 0 4px 4px;
     min-width: 140px;
}

.dropdown .dropdown_content li {
    list-style: none;
    margin-left: 0px;
    line-height: 16px;
    border-top: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
    margin-top: 2px;
    margin-bottom: 2px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
}

.dropdown .dropdown_content li:hover {
    background: #d32d41;
    text-shadow: 1px 1px 0px #9e2635;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    -webkit-box-shadow: inset 0 0 1px 1px #f14a5e;
    -moz-box-shadow: inset 0 0 1px 1px #f14a5e;
    box-shadow: inset 0 0 1px 1px #f14a5e;
    border: 1px solid #9e2635;
    color: #fff;
      -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;

}

.dropdown .dropdown_content li a {
    display: block;
    padding: 2px 7px;
    padding-right: 15px;
    color: black;
    text-decoration: none !important;
    white-space: nowrap;
}

.dropdown .dropdown_content li:hover a {
    color: white;
    text-decoration: none !important;
}

.dropdown input[type="checkbox"]:checked ~ .dropdown_content { display: block }

.dropdown input[type="checkbox"] { display: none }

<div class="dropdown" id="dropdown">
				<input type="checkbox" id="drop1" />
        <label for="drop1" class="dropdown_button">click here<span class="arrow"></span></label>
        <ul class="dropdown_content">
   <li><a href="*">User panel</a></li> 
   <li><a href="*">Log out</a></li>
   <li><a href="*">Edit profile</a></li>
   <li><a href="*">Edit options</a></li>
   <li><a href="*">Edit avatar</a></li>
   <li><a href="*">Edit signature</a></li>
   <li><a href="#">Buddy list</a></li>
        </ul>       
    </div>
&#13;
&#13;
&#13;

这里的JSFIddle演示

http://jsfiddle.net/andreas84x/x5wvnzt7/5/

4 个答案:

答案 0 :(得分:0)

这是因为级联顺序

  1. 浏览器默认
  2. 外部样式表
  3. 内部样式表
  4. 内联
  5. 当您在下拉列表外单击时,它会将样式属性更改为display:none。现在,当您尝试将显示更改为css中的block / inline-block时,它不会生效,因为仍然是内联显示:none都没有优先级。

    解决方案:点击按钮时使用fadeIn(删除此css修复):)

答案 1 :(得分:0)

这有效吗?请检查并回复。

检查此FIDDLE

$(document).click(function (e){
var container = $(".dropdown_content");
if( container.is(':visible')) {
    if(e.target.id != "drop1"){
     $("#drop1").click();
    }
}
});

答案 2 :(得分:0)

     .dropdown_content
        {
            display:none;
        }   



 $(document).ready(function () {

            $(".dropdown_button").click(function (e) {
                e.preventDefault();
                $(".dropdown_content").show();
                });
            });

            $(document).click(function (e) {


                var container = $(".dropdown_content");
                if ($(e.target).closest(".dropdown_button").length > 0) {
                    return false;
                }
                if (!container.is(e.target) && container.has(e.target).length === 0) {
                    //e.preventDefault();
                    container.fadeOut();


                }
                //e.preventDefault();

            });

答案 3 :(得分:-1)

将您的JavaScript代码写入匿名函数

    $(function(){
      $(document).click(function (e)
      {

      var container = $(".dropdown_content");

       if (!container.is(e.target) && container.has(e.target).length === 0)
      {
     container.fadeOut('slow');

       }

    });
  });