0

嗨,我有两个名为“tick”的部门,我在这里要做的是,如果内容溢出,则只应激活自动收报机。

div1 : <div class="home tick">
div2 : <div class="rbar tick">

问题:如果一个 div 中的内容溢出,另一个 div 也开始勾选任何解决方案?

if( ($('.tick > ul').height()) > 160){
    $('.tick').vTicker({ 
        speed: 500,
        pause: 3000,
        animation: 'fade',
        showItems: 3,
        height: 192
    });
}
4

1 回答 1

2

分别取每个 div:

$('.tick > ul').each(function(){
  if( ($(this).height()) > 160){
    $(this).parent().vTicker({ 
        speed: 500,
        pause: 3000,
        animation: 'fade',
        showItems: 3,
        height: 192
    });
  }
})
于 2012-09-03T11:36:29.877 回答