4

我会向用户显示警报,直到货件的密度超过某个值。当页面加载时,会运行一个处理所有这些计算的函数(以防用户加载某些内容而不是从头开始),如果密度小于 X,则显示折叠,否则隐藏。

问题是,当在已经隐藏/显示的元素上调用 .collapse('hide') 或 .collapse('show') 时,会导致它执行相反的操作。

我这样定义我的警报:

<div class="row spacer-bottom collapse in" id="cubicCapacityWarn">

    <div class="span8 offset1">

        <div class="alert alert-error">
            <h4><strong>Cubic Capacity Warning!</strong></h4>
            Shipment Total PCF less than 6, you may be assessed Cubic Capacity surcharges!
        </div>

    </div>

</div>

处理所有这些的 jQuery:

function updateTotals() {

    var total_weight, total_volume, total_density;

    total_weight = 0;
    total_volume = 0;
    total_density = 0;

    $('#units').find('table.unit').each(function(index){

        var weight, volume, density;

        weight = 0;
        volume = 0;
        density = 0;

        volume = parseFloat($(this).find('.unit_cube').text(), 10);

        $(this).find('tbody.products tr').each(function(pIndex){

            weight += parseFloat($(this).find('.weight').text(), 10);

        });

        density = weight / volume;
        density = density.toFixed(2);

        $(this).find('.unit_density').text(density);

        total_weight += (weight * parseInt($(this).find('.unit_num_of').text(), 10));
        total_volume += (volume * parseInt($(this).find('.unit_num_of').text(), 10));

    });


    total_density = total_weight / total_volume;

    $('#total_weight').text(total_weight.toFixed(2));
    $('#total_volume').text(total_volume.toFixed(2));
    if(isNaN(total_density.toFixed(2))) {
        $('#total_density').text("0.00").trigger('change');
    } else {
        $('#total_density').text(total_density.toFixed(2)).trigger('change');
    }

}

$('#cubicCapacityWarn').collapse({toggle: false})

$('#cubicCapacityWarn').on('shown', function(event){
    event.stopPropagation();
    return false;
});

$('#cubicCapacityWarn').on('hidden', function(event){
    alert('hidden')
    event.stopPropagation();
    return false;
});

$('#total_density').change(function(){

    if(parseFloat($(this).text()) < 6) {

        $('#cubicCapacityWarn').collapse('show');
        alert('show')

    } else {

        $('#cubicCapacityWarn').collapse('hide');

    }

});

updateTotals();

我想通过在调用 .collapse('show'|'hide') 之前测试它是否已经折叠来解决这个问题,但我不知道如何。如果这个问题有更优雅的解决方案,我很想听听。

另外,我发现了这个问题如果第一次调用折叠是隐藏,则可折叠将显示在这里,这似乎是相关的,但我添加了$('#...').collapse({toggle: false});没有效果。

4

4 回答 4

9

我知道这是一篇较旧的帖子,但我也一直停留在这个帖子上。所以使用 bootstrap 4.1 我用它来检查手风琴的状态:

var isVisible = $('#collapseOne').is( ":visible" );
alert(isVisible);

反之,如果你想检查它是否被隐藏:

var isHidden = $('#collapseOne').is( ":hidden" );
alert(isHidden);
于 2018-08-30T18:55:42.787 回答
6

例如,我使用它来确定元素 collapseTwo 是否关闭,然后打开它。当然,反过来也可以。

if ($('#collapseTwo').attr('aria-expanded') == "false") {$('#collapseTwo').collapse('show');}
于 2015-12-12T15:49:20.407 回答
1

另一种选择:检查它是否缺少.in课程。

if(!$('#collapseTwo').hasClass('collapse in')){
   $('#collapseTwo').collapse('show');
}
于 2016-08-01T21:56:58.807 回答
0

以下似乎是有效的,虽然我很想看到一个更好的答案或解决方案,但我正在做的事情感觉很老套,可能会让大多数 jQ 开发人员畏缩。

基本上,我现在在 updateTotals() 函数中显示/隐藏警报。我从使用崩溃后发生的显示/隐藏事件更改为现在使用在崩溃发生之前触发的那些事件。我测试一下坍塌的高度是否是我所期望的,因为我将要做的事情(如果我要展示它但高度> 0,它必须已经展示),如果它未能通过此健全性检查,我return false似乎正在取消触发事件(我希望)或类似的事情,因为目前,除非有我没有测试的情况,否则它应该正常工作。尝试在显示警报时显示警报不会隐藏它,反之亦然。

function updateTotals() {

    var total_weight, total_volume, total_density;

    total_weight = 0;
    total_volume = 0;
    total_density = 0;

    $('#units').find('table.unit').each(function(index){

        var weight, volume, density;

        weight = 0;
        volume = 0;
        density = 0;

        volume = parseFloat($(this).find('.unit_cube').text(), 10);

        $(this).find('tbody.products tr').each(function(pIndex){

            weight += parseFloat($(this).find('.weight').text(), 10);

        });

        density = weight / volume;
        density = density.toFixed(2);

        $(this).find('.unit_density').text(density);

        total_weight += (weight * parseInt($(this).find('.unit_num_of').text(), 10));
        total_volume += (volume * parseInt($(this).find('.unit_num_of').text(), 10));

    });


    total_density = total_weight / total_volume;

    $('#total_weight').text(total_weight.toFixed(2));
    $('#total_volume').text(total_volume.toFixed(2));
    if(isNaN(total_density.toFixed(2))) {
        $('#total_density').text("0.00").trigger('change');
    } else {
        $('#total_density').text(total_density.toFixed(2)).trigger('change');
    }

    if((total_density.toFixed(2) < 6) || isNaN(total_density.toFixed(2))) {
        $('#cubicCapacityWarn').collapse('show');
    } else {
        $('#cubicCapacityWarn').collapse('hide');
    }

}

$('#cubicCapacityWarn').collapse({toggle: false})

$('#cubicCapacityWarn').on('show', function(event){

    if($(this).height() > 0) {
        return false;
    }

    console.log('shown');
    event.stopPropagation();

});

$('#cubicCapacityWarn').on('hide', function(event){

    if($(this).height() == 0) {
        return false;
    }

    console.log('hidden');
    event.stopPropagation();
});
于 2013-04-04T16:32:53.753 回答