jQuery - 防止其他“点击”功能

时间:2014-08-31 16:16:06

标签: javascript jquery html css

我有一个简单的脚本,用户可以在其中加载两个不同的容器,其中包含一些不同的内容。

这是代码:

<div id="t-loader"></div>


<div class="media load-fixed active"> 
    Load Fixed
</div>
<br />
<div class="media load-extra"> 
    Load Extra
</div>



<br />
<div class="fixed-ads">
FIXED ADS IN HERE!!         
</div>


<div style="display: none;" class="extra-ads">
EXTRA ADS IN HERE!! 
</div>

和jQuery:

$('.load-extra').click(function() {
    $(this).addClass('active');
    $('.load-fixed').removeClass('active');
    $('.fixed-ads').hide();
    $('#t-loader').show().html('loader');

    setTimeout(
      function() 
      {
        $('#t-loader').hide();
        $('.extra-ads').show();
      }, 2000);


});
$('.load-fixed').click(function() {
    $(this).addClass('active');
    $('.load-extra').removeClass('active');
    $('.extra-ads').hide();
    $('#t-loader').show().html('loader');
    setTimeout(
      function() 
      {
        $('#t-loader').hide();
        $('.fixed-ads').show();
      }, 2000);
});

问题是,每当有人点击.load-extra.load-fixed时,两者都会显示在页面上。

我该怎么办,所以每当有人点击.load-extra.load-fixed时,只有其中一个会显示?

我在这里创建了一个 jsFiddle:http://jsfiddle.net/j21oofwx/

在示例中,尝试快速单击“Load Extra”和“Load Fixed” - 您将看到两个容器中的内容都将显示。

1 个答案:

答案 0 :(得分:4)

使用现有代码的最简单方法可能是保存setTimeout并在每次单击按钮时清除它 - http://jsfiddle.net/uegt5opm/

var setTimer = null;
$('.load-extra').click(function() {
    $(this).addClass('active');
    $('.load-fixed').removeClass('active');
    $('.fixed-ads').hide();
    $('#t-loader').show().html('loader');

    clearTimeout(setTimer);
    setTimer = setTimeout(function(){
        $('#t-loader').hide();
        $('.extra-ads').show();
    }, 2000);


});
$('.load-fixed').click(function() {
    $(this).addClass('active');
    $('.load-extra').removeClass('active');
    $('.extra-ads').hide();
    $('#t-loader').show().html('loader');

    clearTimeout(setTimer);
    setTimer = setTimeout(function(){
        $('#t-loader').hide();
        $('.fixed-ads').show();
    }, 2000);
});

虽然在“真实”设置中使用setTimeout用于此UI目的是不寻常的,所以如果这不会转移到您的实际用例,我不会感到惊讶。