使用jquery检测元素溢出

前端之家收集整理的这篇文章主要介绍了使用jquery检测元素溢出前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
CSS:
.blue
    {
     width:200px;
     height:200px;
     background-color:blue;
     color:#000000;
     overflow:auto;
    }

JavaScript:

function addChar() {
    $('.blue').append('some text  ');
}

HTML:

<div id='blue1' class="blue"></div><br />
<a href='javascript:void(0)' onclick='addChar()'>Add</a>

div id =’blue1’的overflow属性设置为auto。我想检测溢出时发生。

解决方法

$.fn.HasScrollBar = function() {
    //note: clientHeight= height of holder
    //scrollHeight= we have content till this height
    var _elm = $(this)[0];
    var _hasScrollBar = false; 
    if ((_elm.clientHeight < _elm.scrollHeight) || (_elm.clientWidth < _elm.scrollWidth)) {
        _hasScrollBar = true;
    }
    return _hasScrollBar;
}

///这是我的解决方

原文链接:https://www.f2er.com/jquery/184909.html

猜你在找的jQuery相关文章