镜像 html 部分
我想创建一个带有 div 的 html 页面,其中包含与另一个 div 相同的内容。我希望出发地的任何变化都会反映在目的地中。 您能帮忙: 1 - 我需要监听哪些 DOM 事件? 2 - 如何将事件应用到目的地?
我看到这些事件:DOMAttrModified、DOMNodeInserted、DOMNodeRemoved、DOMSubtreeModified 但我不知道如何解析它们。
I would like to create an html page with a div that will contain the same content as another div. i want that any change in the origin will be reflected in the destination.
Can you please help with:
1 - Which DOM events do I need to listen to?
2 - How do I apply the events to the destination?
I saw these events: DOMAttrModified, DOMNodeInserted, DOMNodeRemoved, DOMSubtreeModified
but I don't know how to parse them.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JQuery 有一个 .clone() 函数对此很有帮助。请查看此处
JQuery has a .clone() function that would be helpful for this. Check it out here