gpt4 book ai didi

javascript - daterangepicker 关闭父 Bootstrap 下拉列表

转载 作者:行者123 更新时间:2023-11-30 20:48:14 28 4
gpt4 key购买 nike

我在 Bootstrap 中有一个带有 daterangepicker 输入的下拉菜单。

我有这个代码

$(document).on('click', 'body .dropdown-menu', function (e) {
e.stopPropagation();
});

$('#filter-expired-range').daterangepicker();

当我点击 daterangepicker 日历日输入时 - 一切都关闭了(daterangepicker 日历和下拉菜单)

更新 1。

html代码:

<div class="btn-group mea-filters-block">
<span style="float: left; padding-top: 12px;" class="mea-info"></span>
<button type="button" class="btn dropdown-toggle btn-filter btn-link" data-toggle="dropdown"
title="Filter">
<i class="fa fa-filter"></i></button>
<ul class="dropdown-menu dropdown-menu-right">
<form id="docExportFilter">
<div class="row">
<div class="col-sm-6" style="border-right: 1px solid #ddd">

<p class="filterslabel"><i
class="fa fa-calendar-check-o"></i>
<span>Validation date</span>
</p>

<div class="form-group">
<input type="checkbox" class="" name="validDocuments" id="filter-valid">
<label for="filter-valid">Valid documents</label>
</div>

<div class="form-group">
<input type="checkbox" class="" name="expired" id="filter-expired">
<label for="filter-valid">Expired documents</label>
</div>

<div class="form-group" id="filter_expired_range_container" style="display: none">
<label for="filter-expired">Expired between dates
<input style="width: 100%" readonly placeholder="Any" type="text"
class="form-control" name="expired_range" id="filter-expired-range">
</label>
</div>


</div>


<div class="col-sm-6">
<p class="filterslabel"><i
class="icon-checkmark-circle2"></i> <span>Compliance</span>
</p>
<div class="form-group">
<input type="checkbox" name="compliant" class="" id="filter-compilant">
<label for="filter-compilant">Compliant documents</label>
</div>
<div class="form-group">
<input type="checkbox" name="remedialActionsRequired" class="" id="filter-remedial">
<label for="filter-remedial">Remedial required</label>
</div>
</div>
</div>

<div class="row pt-15" style="border-top: 1px solid #ddd">
<div class="col-sm-12 text-right">
<a class="mea-submit btn btn-primary"><i class="fa fa-check"></i>Apply</a>
<button class="btn btn-default" type="reset"><i class="fa fa-times"></i> Cancel</button>

</div>
</div>


</form>
</ul>
</div>

更新 2。这是最小的例子 - 我看到问题是 requirejs - 如果我在没有 requirejs 的情况下测试它 - 它工作......

requirejs 示例(不起作用 - 选择日期关闭父下拉列表) https://jsfiddle.net/5wtLqxk9/2/

没有 requirejs 的例子(工作正常) https://jsfiddle.net/5wtLqxk9/1/

最佳答案

   $("div.daterangepicker").click( function(e) {
e.stopPropagation();
});

注意:放在daterangepicker()之后 https://jsfiddle.net/5wtLqxk9/4/

类似于: event bubbling in Jquery datepicker

关于javascript - daterangepicker 关闭父 Bootstrap 下拉列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48464348/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com