4

当用户关闭由“ bootstrap-multiselect ” UI 控制的下拉菜单时,我想重新加载页面。

这是我到目前为止尝试过的

    $('#ts_client_id').multiselect({
        enableFiltering: true,
        enableCaseInsensitiveFiltering: true,
        selectedClass: null,
        nonSelectedText: 'All Clients',
        includeSelectAllOption: true,
        buttonWidth: '100%',
        maxHeight: 250
    }).on('blur', function () {
        console.log($('#ts_client_id').val());
        window.location.reload();
    });

$('#ts_client_id').multiselect({
    enableFiltering: true,
    enableCaseInsensitiveFiltering: true,
    selectedClass: null,
    nonSelectedText: 'All Clients',
    includeSelectAllOption: true,
    buttonWidth: '100%',
    maxHeight: 250
}).on('hide.bs.dropdown', function () {
    console.log($('#ts_client_id').val());
    window.location.reload();
});

我也试过这个,它不工作

    $('#ts_client_id').multiselect({
        onDropdownHidden: function(event){
            console.log('hi');
            window.location.reload();
        },
        enableFiltering: true,
        enableCaseInsensitiveFiltering: true,
        selectedClass: null,
        nonSelectedText: 'All Clients',
        includeSelectAllOption: true,
        buttonWidth: '100%',
        maxHeight: 250
    });

这是我的 HTML 代码

<select name="ts_client_id[]" id="ts_client_id"  multiple="multiple"  class="form-control width-sm-size row-left-xxsm-margin" >
<option value="2"  selected="selected" >Option 1</option>
<option value="1"  selected="selected" >Option 2</option>
<option value="7"  selected="selected" >Option 3</option>
</select>

但是由于某种原因,控制台没有打印任何内容,页面也没有重新加载。

我可以做些什么来检测菜单何时关闭,以便我可以重新加载页面。

4

3 回答 3

9

它清楚地在文档中:

使用 Twitter Bootstrap 2.3 时,onDropdownHide 选项不可用。

以他们的例子:

<script type="text/javascript">
    $(document).ready(function() {
        $('#example-onDropdownHide').multiselect({
            onDropdownHide: function(event) {
                alert('Dropdown closed.');
            }
        });
    });
</script>
于 2015-03-04T23:06:11.927 回答
3

您要设置 onDropdownHidden 选项。它记录在配置选项页面上:

http://davidstutz.github.io/bootstrap-multiselect/#configuration-options

编辑:传递一个函数作为 onDropdownHidden 的参数似乎对我来说很好。

在此处发布小提琴以供参考:http: //jsfiddle.net/ge81dt1r/2/

你可以试试换

window.location.reload();

location.href = location.href; 

它应该可以工作,尽管不会发送任何发布数据。要查看两者之间的区别并决定哪个最好,请在此处阅读答案: window.location.href=window.location.href 和 window.location.reload() 之间的区别

于 2015-03-04T23:04:04.350 回答
0

您应该使用 onDropdownHide 事件

这里有一个例子

$(document).ready(function() {
  $('#example-getting-started').multiselect({
    onDropdownHide: function(event) {
        alert('Dropdown closed.');
        // to reload the page
        location.reload();
    }
  });
});

参见jsfiddle

于 2015-03-04T23:33:15.033 回答