1

我曾经toggle隐藏/显示DIV

HTML

<div class="wrap">

  <h1 id="selectBox">Service you&#39;re interested in</h1>

  <div class="selectBox">
    <div class="selectBoxWrap">

      <ul class="selectBoxContent">
        <li><input type="checkbox" name="#" value="New Web Site" /> <span class="innerPageSelect">Website Design and Development</span></li>
        <li><input type="checkbox" name="#" value="New Web Site" /> <span>Website Maintenance</span></li>
        <li class="other">
          <p>
            <label for="other">Other</label><br />
        <input type="text" name="other" value="" id="other" />
          </p>
         </li>
       </ul> 

      </div>
    </div>
</div>

查询

$(function() {

            $('#selectBox').click(function() {
        $('.selectBoxContent').slideToggle('fast');
        return false;

    });
        });

我想要,在选择服务后单击页面上的任意位置时隐藏切换 divcheckbox或在textbox.

是我的小提琴

感谢您的意见和建议

先感谢您!!!

4

4 回答 4

2

用这个

$(document).click(function() {
 $('.selectBoxContent').slideUp('fast');
});

$(".selectBoxContent").click(function(e) { // Wont toggle on any click in the div
e.stopPropagation();
});

检查这个小提琴

于 2013-02-15T05:54:20.237 回答
1
$(function() {
    $(document).on("click", function(e) {
        if ($(e.srcElement).closest('.selectBoxWrap').length) return;
        if ($('.selectBoxContent').is(":visible")) $('.selectBoxContent').slideToggle('fast');
    });
    $('#selectBox').on("click", function(e) {
        if ($(e.srcElement).closest('.selectBoxWrap').length) return;
        $('.selectBoxContent').slideToggle('fast');
        return false;
    });
});

小提琴:http: //jsfiddle.net/TEyHC/9/

于 2013-02-15T05:56:30.173 回答
0

您可以将单击事件处理程序绑定到 html 标记:

$(function() {
    $('#selectBox').click(function() {
        $('html').click(function() {
            $(this).unbind('click');
            $('.selectBoxContent').slideToggle('fast');
        });
        $('.selectBoxContent').slideToggle('fast');
        return false;
    });
});
于 2013-02-15T05:43:24.943 回答
0

你可以这样使用

 $('html').click(function() {
       $('.selectBoxContent').slideToggle('fast');
  });

这是一个小提琴

于 2013-02-15T05:46:38.117 回答