jQuery:当div变为可见时如何绑定事件?

时间:2010-10-04 20:54:54

标签: jquery tabs jquery-tabs

我有一个div元素: <div id="tab1"> Tab data </div>

当此div变为可见时如何绑定自定义事件(获取display: block;)?

此外,当这个div变得不可见时,我想绑定一个事件(获取display: none;)。

我想在jQuery中这样做。

编辑: 我正在使用ajax内容制作简单的标签。我希望仅当选项卡可见时,此选项卡上的内容才能进行ajax更新。

3 个答案:

答案 0 :(得分:3)

事件总是绑定到div,但在事件内部,执行以下操作:

if($(self).is(":visible")){
    // Implement your code
}

现在只有在用户可以看到该元素时才会触发您的事件。

答案 1 :(得分:3)

根据可见性启动和停止AJAX更新。您可以使用 .is() :visible 返回TRUE或FALSE:

var timer; // Variable to start and top updating timer

  // This if statement has to be part of the event handler for the visibility
  //   change of selector..... so there might be more straight forward solution
  //   see the last example in this answer.
if ($(selector).is(":visible"))
{
    // Start / continue AJAX updating
    timer = setInterval(AJAXupdate, 1000);
} else
{
    // Stop AJAX updating
    clearInterval(timer);
}

这是一个计时器的简单示例,它在不可见时停止。请注意,当数字不可见时,数字不会继续增加:

(function() {    

    var switcher;                             // variable to start and stop timer

      // Function / event that will be started and stopped
    function count() {
        $("div").html(1 + parseInt($("div").html(), 10));
    }

    $(function() {                                               // <== doc ready

          // Start timer - it is visible by default
        switcher = setInterval(count, 1000);

        $("input").click(function() {

            $("div").toggle();                         // Toggle timer visibility

              // Start and stop timer based on visibility
            if ($("div").is(":visible"))
            {
                switcher = setInterval(count, 1000);
            } else
            {
                clearInterval(switcher);            
            }
        });
    });
}());
​

jsFiddle example


当然,在上述情况下,也许是你的情况,更简单的是,更简单地交替打开和关闭更新:

(function() {    

    var switcher;

    function count() {
        $("div").html(1 + parseInt($("div").html(), 10));
    }

    $(function() {

        switcher = setInterval(count, 1000);

        $("input").toggle(function() { 
            clearInterval(switcher);
            $("div").toggle(); }, 
        function() {                        
            switcher = setInterval(count, 1000);
            $("div").toggle();
        });

    });

}());

jsFiddle example

答案 2 :(得分:1)

我找到的解决方案是在选中标签时启动focus事件。

var tabContainers = $('div.tabs > div');

$('div.tabs ul.tabNavigation a').click(function () {
    tabContainers.each(function(){

        tabContainers.hide().filter(this.hash).show();

        if ( $(this).is(':visible') ) {
            $(this).focus(); // fire this event if tab is visible
        } else {
            $(this).blur(); // if tab is invisible
        }
    });
});

然后我抓住了这些focusblur事件:

$(document).ready(function(){
    $("#tabID").bind("focus",function(){
        if ( $(this).is(":visible") ) {
            // start ajax here
        }
    });

    $("#tab'.$key.'").bind("blur",function(){
        if ( !$(this).is(":visible") ) {
            // stop ajax here
        }
    });
});