gpt4 book ai didi

jquery - 使用 jquery 检测元素溢出

转载 作者:行者123 更新时间:2023-12-03 21:29:58 25 4
gpt4 key购买 nike

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;
}

///这是我的解决方案

关于jquery - 使用 jquery 检测元素溢出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2059743/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com