在 domnodeinserted 之前 - javascript
是否可以在插入节点之前启动事件?我知道“domnodeinserted”在基于 gecko 的浏览器中工作,但我该代码是在插入节点后执行的。我实际上想在插入节点之前执行一段代码。提前致谢!
is it possible to launch an event before the node is inserted? I know that "domnodeinserted" works in gecko based browsers but I that code is executed after the node is inserted. I actually want to execute a code before the node is inserted. Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,没有这样的事件。 DOM 突变列表中没有任何内容DOM Level 2 指定的事件(甚至DOM等级3)这就是你想要的。
No, there is no such event. There is nothing in the list of DOM mutation events specified by DOM Level 2 (or even DOM Level 3) that does what you want.