DOM 突变事件库?
当内容添加到网页时,我需要触发一个操作。更新可以具有不同的性质(例如 AJAX、延迟脚本、用户操作),并且不受我的控制。
我想使用 DOM 突变事件,但它们并非在所有浏览器中都可用。是否有跨浏览器库提供后备计划?
另外,我很想知道 Internet Explorer 9 是否支持这些 DOM 突变事件。
谢谢!
I need to trigger an action when content is added to a Web page. The updates can be of different nature (AJAX, delayed scripts, user action for example) and are not under my control.
I wanted to use DOM mutation events, but they are not available in all browsers. Are there cross-browser libraries for this, that offer a fallback plan?
Also, I'd be interested to know if Internet Explorer 9 will support these DOM mutation events.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
有两种方法可以做到这一点......
第一种,您可以拍摄 dom 的快照(
var snap = document.body
),将其与 100 毫秒后的 dom 进行比较,然后重置snap再次到正文。我会让你发挥创意来比较它们:迭代似乎是常见的答案。这并不漂亮。
另一种选择是在您创建的用于在应用程序中添加/删除元素的任何函数中具有特殊函数。该函数将仅迭代您添加(或销毁)的元素并查找匹配项。
这可能并不完美,但它应该能让您知道前进的方向。调用此函数 (addingToDom),传递刚刚添加的元素作为参数。创建一个类似的函数来删除元素(或相同的函数,但条件是一个单独的回调数组)。
这是我用来测试一些想法的当前(大而混乱)代码的推断。我已经用这个垫片测试了早至 ie7 的匹配选择器,它似乎工作得很好!
我已经考虑过,但没有研究过,元素具有某种参数的可能性,这些参数可以设置为一个函数,该函数在添加时被调用,并将其自身作为参数传递。但是,这可能是牵强的。
There are two ways to do this...
One, you can take a snapshot of the dom (
var snap = document.body
), compare that to the dom 100ms later and then resetsnap
to the body again. I'll let you be creative on how to compare them: iteration seems to be the common answer. It's not pretty.The other option is to have a special function in any functions you create that add/remove elements in your application. This function would iterate through just the elements you add (or destroy) and look for a match.
That may not be perfect, but it should give you an idea of where to head. Call this function (addingToDom) passing the elements you just added as the argument. Create a similar function for deleting elements (or same function, but condition a separate array of callbacks).
This is an extrapolation of a current (large and messy) code I'm using to test out some ideas. I've tested matches selector as far back as ie7 with this shim, and it seems to work great!
I've considered, but not looked in to, the possibility of the element having some sort of parameter that could be set as a function that gets called when it's added, passing itself as a parameter. BUT, that's probably far-fetched.
您可以通过设置函数并使用 JSONP for AJAX 请求来调用该函数来轻松触发操作。在用户操作期间可以调用相同的函数。
You can easily trigger an action by setting a function and using JSONP for AJAX requests to call that function. The same function can be called during a user action.
嗯...这里有一个想法来判断是否已添加元素:将一个类附加到页面上的每个元素,然后使用查询查找不具有该类的每个元素
querySelectorAll(':not(. myclass)')
,然后循环这些。您仍然需要每隔一段时间运行一次,但是 querySelectorAll 很快,因为它是本机浏览器,并且如果它返回“空”(
false
?null
?我立刻就知道)你什么都不做,这样的开销应该是最小的。Well... here's an idea to tell if an element has been added: append a class to each element on the page, then use query to find each element that doesn't have that class
querySelectorAll(':not(.myclass)')
, then loop through those.You'd still have to run it on an interval, but querySelectorAll is quick as it's native browser, and if it returns 'empty' (
false
?null
? don't know off the top of my head) you don't do anything, and it should be minimal overhead that way.我刚刚遇到了一个依赖于 css 事件的有趣黑客:
http ://www.backalleycoder.com/2012/04/25/i-want-a-damnodeinserted/
根据作者的说法,这适用于 IE10、Firefox 5+、Chrome 3+、Opera 12、Android 2.0+ 、Safari 4+ 以及 iPhone Safari 的几乎所有版本。
I just came across an interesting hack that relies on css events:
http://www.backalleycoder.com/2012/04/25/i-want-a-damnodeinserted/
According to the author this works in IE10, Firefox 5+, Chrome 3+, Opera 12, Android 2.0+, Safari 4+, and nearly every version if iPhone Safari.