我有一个div包含一些动态添加和删除的内容,所以它的高度经常变化.我也有一个div绝对定位在javascript的正下方,所以除非我能检测到div的高度何时改变,否则我无法重新定位它下方的div.
那么,我怎样才能检测到div的高度何时发生变化?我假设我需要使用一些jQuery事件,但我不确定要挂入哪一个.
使用css-element-queries库中的resize传感器:
https://github.com/marcj/css-element-queries
new ResizeSensor(jQuery('#myElement'), function() { console.log('myelement has been resized'); });
它使用基于事件的方法,不会浪费您的CPU时间.适用于所有浏览器.IE7 +.
我曾经为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
如果您手动调整div的大小,这解决了问题,这不能解决原来的问题吗?如果您动态添加内容,则无法检测到高度变化:http://jsfiddle.net/aD49d/25/
@JoeCoder当存在用户操作时,此交换代码依赖于浏览器触发的DOM事件.但是,该示例中的动态内容以编程方式包含在内,遗憾的是,它不会触发任何事件."轮询"似乎是另一种更容易的选择..其他选项可以在包含动态内容后手动触发.
3> eyelidlessne..:您可以使用DOMSubtreeModified事件
$(something).bind('DOMSubtreeModified' ...但即使尺寸没有变化,这也会触发,并且每当发生火灾时重新分配位置都会受到性能影响.根据我使用此方法的经验,检查尺寸是否已更改更便宜,因此您可以考虑将两者结合使用.
或者,如果您直接更改div(而不是以不可预测的方式通过用户输入更改div,例如,如果它是contentEditable),则只需在您执行此操作时触发自定义事件即可.
缺点:IE和Opera没有实现此事件.
DomSubtreeModified得到了诽谤
IE和Opera不会实现此事件:http://www.quirksmode.org/dom/events/index.html
真正.注意补充说.
这样做的现代方法是使用MutationObserver:https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver
4> Kyle..:这就是我最近处理这个问题的方法:
$('#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'); }我知道我已经晚了几年,只是觉得我的答案可能会帮助将来的某些人,而不必下载任何插件.
5> EFernandes..:你可以使用
MutationObserver
课程.
MutationObserver
为开发人员提供了一种对DOM中的更改做出反应的方法.它被设计为DOM3 Events规范中定义的Mutation Events的替代品.示例(来源)
// 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();
这只适用于IE11 + http://caniuse.com/#feat=mutationobserver
6> Val..:有一个jQuery插件可以很好地处理这个问题
http://www.jqui.net/jquery-projects/jquery-mutate-official/
这里有一个演示,它有不同的场景,关于高度何时改变,如果你调整红色边框div.
http://www.jqui.net/demo/mutate/
7> apaul..:响应user007:
如果元素的高度因使用的项目附加而
.append()
发生变化,则不需要检测高度的变化.只需将第二个元素的重新定位添加到您将新内容附加到第一个元素的同一个函数中.如:
工作实例
$('.class1').click(function () { $('.class1').append(""); $('.class2').css('top', $('.class1').offset().top + $('.class1').outerHeight()); });This is some content