我有一个div包含一些动态添加和删除的内容,因此它的高度经常变化。我还有一个div,它绝对位于javascript的正下方,所以除非我能检测到div的高度何时发生变化,否则我无法重新定位它下面的div。
那么,如何检测该div的高度何时发生变化?我假设我需要使用一些jQuery事件,但我不确定要挂入哪一个。
答案 0 :(得分:63)
使用css-element-queries库中的resize传感器:
https://github.com/marcj/css-element-queries
new ResizeSensor(jQuery('#myElement'), function() {
console.log('myelement has been resized');
});
它使用基于事件的方法,并且不会浪费你的cpu时间。适用于所有浏览器。 IE7 +。
答案 1 :(得分:49)
我曾经为 attrchange 侦听器编写了一个插件,它基本上会在属性更改时添加一个侦听器函数。即使我说它是一个插件,实际上它是一个简单的函数编写为jQuery插件..所以如果你想..剥离插件specfic代码并使用核心功能。
注意:此代码不使用轮询
查看这个简单的演示http://jsfiddle.net/aD49d/
$(function () {
var prevHeight = $('#test').height();
$('#test').attrchange({
callback: function (e) {
var curHeight = $(this).height();
if (prevHeight !== curHeight) {
$('#logger').text('height changed from ' + prevHeight + ' to ' + curHeight);
prevHeight = curHeight;
}
}
}).resizable();
});
插件页面 http://meetselva.github.io/attrchange/
缩小版本:(1.68kb)
(function(e){function t(){var e=document.createElement("p");var t=false;if(e.addEventListener)e.addEventListener("DOMAttrModified",function(){t=true},false);else if(e.attachEvent)e.attachEvent("onDOMAttrModified",function(){t=true});else return false;e.setAttribute("id","target");return t}function n(t,n){if(t){var r=this.data("attr-old-value");if(n.attributeName.indexOf("style")>=0){if(!r["style"])r["style"]={};var i=n.attributeName.split(".");n.attributeName=i[0];n.oldValue=r["style"][i[1]];n.newValue=i[1]+":"+this.prop("style")[e.camelCase(i[1])];r["style"][i[1]]=n.newValue}else{n.oldValue=r[n.attributeName];n.newValue=this.attr(n.attributeName);r[n.attributeName]=n.newValue}this.data("attr-old-value",r)}}var r=window.MutationObserver||window.WebKitMutationObserver;e.fn.attrchange=function(i){var s={trackValues:false,callback:e.noop};if(typeof i==="function"){s.callback=i}else{e.extend(s,i)}if(s.trackValues){e(this).each(function(t,n){var r={};for(var i,t=0,s=n.attributes,o=s.length;t<o;t++){i=s.item(t);r[i.nodeName]=i.value}e(this).data("attr-old-value",r)})}if(r){var o={subtree:false,attributes:true,attributeOldValue:s.trackValues};var u=new r(function(t){t.forEach(function(t){var n=t.target;if(s.trackValues){t.newValue=e(n).attr(t.attributeName)}s.callback.call(n,t)})});return this.each(function(){u.observe(this,o)})}else if(t()){return this.on("DOMAttrModified",function(e){if(e.originalEvent)e=e.originalEvent;e.attributeName=e.attrName;e.oldValue=e.prevValue;s.callback.call(this,e)})}else if("onpropertychange"in document.body){return this.on("propertychange",function(t){t.attributeName=window.event.propertyName;n.call(e(this),s.trackValues,t);s.callback.call(this,t)})}return this}})(jQuery)
答案 2 :(得分:28)
您可以使用DOMSubtreeModified事件
$(something).bind('DOMSubtreeModified' ...
但即使尺寸没有改变也会触发,并且每当发射时重新分配位置都会受到性能影响。根据我使用此方法的经验,检查尺寸是否已更改更便宜,因此您可以考虑将两者结合使用。
或者,如果您正在直接更改div(而不是以不可预测的方式通过用户输入更改div,例如,如果它是contentEditable),则只需在您执行此操作时触发自定义事件。
缺点:IE和Opera没有实现此事件。
答案 3 :(得分:20)
这就是我最近处理这个问题的方法:
$('#your-resizing-div').bind('getheight', function() {
$('#your-resizing-div').height();
});
function your_function_to_load_content() {
/*whatever your thing does*/
$('#your-resizing-div').trigger('getheight');
}
我知道我在派对上已经晚了几年,只是觉得我的答案可能会帮助将来某些人,而不必下载任何插件。
答案 4 :(得分:16)
您可以使用MutationObserver
课程。
MutationObserver
为开发人员提供了一种对DOM中的更改做出反应的方法。它被设计为DOM3事件规范中定义的Mutation事件的替代。
示例(source)
// select the target node
var target = document.querySelector('#some-id');
// create an observer instance
var observer = new MutationObserver(function(mutations) {
mutations.forEach(function(mutation) {
console.log(mutation.type);
});
});
// configuration of the observer:
var config = { attributes: true, childList: true, characterData: true };
// pass in the target node, as well as the observer options
observer.observe(target, config);
// later, you can stop observing
observer.disconnect();
答案 5 :(得分:9)
有一个jQuery插件可以很好地处理这个
http://www.jqui.net/jquery-projects/jquery-mutate-official/
这里有一个关于高度变化的不同场景的演示,如果你调整红色边框div的大小。
答案 6 :(得分:7)
回复user007:
如果元素的高度因使用.append()
附加到其中的项目而发生变化,则您无需检测高度的变化。只需将第二个元素的重新定位添加到您将新内容附加到第一个元素的同一个函数中。
如:
<强> Working Example 强>
$('.class1').click(function () {
$('.class1').append("<div class='newClass'><h1>This is some content</h1></div>");
$('.class2').css('top', $('.class1').offset().top + $('.class1').outerHeight());
});
答案 7 :(得分:2)
你可以做一个简单的setInterval。
function someJsClass()
{
var _resizeInterval = null;
var _lastHeight = 0;
var _lastWidth = 0;
this.Initialize = function(){
var _resizeInterval = setInterval(_resizeIntervalTick, 200);
};
this.Stop = function(){
if(_resizeInterval != null)
clearInterval(_resizeInterval);
};
var _resizeIntervalTick = function () {
if ($(yourDiv).width() != _lastWidth || $(yourDiv).height() != _lastHeight) {
_lastWidth = $(contentBox).width();
_lastHeight = $(contentBox).height();
DoWhatYouWantWhenTheSizeChange();
}
};
}
var class = new someJsClass();
class.Initialize();
编辑:
这是一个类的例子。但你可以做一些最简单的事情。
答案 8 :(得分:0)
您可以使用此功能,但它仅支持Firefox和Chrome。
$(element).bind('DOMSubtreeModified', function () {
var $this = this;
var updateHeight = function () {
var Height = $($this).height();
console.log(Height);
};
setTimeout(updateHeight, 2000);
});
答案 9 :(得分:0)
非常基本但有效:
function dynamicHeight() {
var height = jQuery('').height();
jQuery('.edito-wrapper').css('height', editoHeight);
}
editoHeightSize();
jQuery(window).resize(function () {
editoHeightSize();
});
答案 10 :(得分:0)
这几天,您还可以使用Web API ResizeObserver
。
简单的例子:
const resizeObserver = new ResizeObserver(() => {
console.log('size changed');
});
resizeObserver.observe(document.querySelector('#myElement'));