For example, I have a p element with some text inside, and then I have a button. Click the button to replace the content in the p element. Then what kind of events can be bound to the p element to let me know that it has been modified? Is there any way to achieve this?
For example, I have a p element with some text inside, and then I have a button. Click the button to replace the content in the p element. Then what kind of events can be bound to the p element to let me know that it has been modified? Is there any way to achieve this?
http://stackoverflow.com/questions/9470931/is-there-any-on-dom-change-event
The latest MutationObserver should be able to meet the needs. For details, see https://developer.mozilla.org/zh-CN/docs/Web/API/MutationObserver
MutationObserver provides developers with the ability to respond appropriately when the DOM tree changes within a certain range.
Coveres child node changes and attribute changes.
It is more intuitive if you use event listeners, such as DOMNodeInserted, DOMNodeRemoved, etc. But MutationObserver is designed to replace Mutation events -- DOMNodeInserted, etc.
This design is a bit like Promise, without the shadow of event listeners.
Thanks for the invitation. Click on the event to send a ajax
request to send your modified operations to others.
The
p element itself does not have a change
event, so you have to do logical processing when clicking the button. Anyway, clicking this button will definitely modify the content of the p element. The worst thing is that if p is modified in multiple places, this Sometimes you have to write the same logic processing repeatedly, but if you use a framework, such watchers are provided in angular and vue
DOMSubtreeModified
This event is used by very few people. . . .