次jQueryプラグインは、結果を警告します。
高さがオーバーフローを決定するために幅のオーバーフローを決定するためにCSS
#tempDiv{
height:10px;
overflow:hidden;
}
、
(function($) {
$.fn.isOverflowWidth = function() {
return this.each(function() {
var el = $(this);
if (el.css("overflow") == "hidden") {
var text = el.html();
var t = $(this.cloneNode(true)).hide().css('position', 'absolute').css('overflow', 'visible').width('auto').height(el.height());
el.after(t);
function width() {
return t.width() > el.width();
};
alert(width());
}
});
};
})(jQuery);
、あなたがeasilでき
(function($) {
$.fn.isOverflowHeight = function() {
return this.each(function() {
var el = $(this);
if (el.css("overflow") == "hidden") {
var text = el.html();
var t = $(this.cloneNode(true)).hide().css('position', 'absolute').css('overflow', 'visible').height('auto').width(el.width());
el.after(t);
function height() {
return t.height() > el.height();
};
alert(height());
}
});
};
})(jQuery);
http://jsfiddle.net/C3hTV/
正確に「検出する」とはどういう意味ですか?反応で何をしたいですか、スクロールバーを表示しますか? –
テキストがオーバーフローした場合にマウスのホバーでdivのサイズを変更したいが、私はそれを既にソートしていたので、問題の一部ではなかった。 –
偉大な答えで同様の古い質問:https://stackoverflow.com/a/143889/573057 – earcam