Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写这个在 Campfire 聊天中包含表情符号的脚本。我想知道是否可以检测到元素(A DIV)何时发生变化。
例如,如果我在该元素上附加一些东西,我可以使用这样的代码来查看它是否发生了变化。可能吗?
如果您想支持此 HTML5 功能,请捕获突变事件。否则定期遍历 DOM 树以查找更改。
如果只是文本,您可以使用 documenttext 属性将文档中的所有文本压缩为字符串。并查看它是否与您上次轮询时的文档文本匹配。
在一个里面