如何使用jquery监控div是否更新?
我的 Div 的 contenteditable 为 true,但我想监视 div,如果有更新。我如何使用jquery监控它?谢谢。
My Div have the contenteditable as true, but I would like to monitor the div, if there is updated. How can I monitor it using jquery? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为此,您可以查看突变事件。在你的情况下
,每次 DOM 子树中发生任何变化时都应该触发。但我不确定它是否适用于 contentEditable。
示例: http://jsfiddle.net/J6ARW/
注意一点:突变事件被声明为“已弃用”,因此它可能是一个很好的工具,但对于任何生产代码来说可能并不明智。
You could have a look into mutation events for that purpose. In your case
That should fire every time, anything changes within that DOM subtree. I'm not sure if it works with a contentEditable however.
Example: http://jsfiddle.net/J6ARW/
One word of caution: Mutation events were declared 'deprecated' so it might be a nice tool to play around with, but maybe not wise to use for any production code.
您可以使用
.blur()
或.keypress()
事件处理方法。演示位于 http://jsfiddle.net/gaby/nwCsr/
更新
来处理粘贴,您可以监听
paste
事件..演示在 http://jsfiddle.net/gaby/nwCsr/1/
You can use the
.blur()
or the.keypress()
event handling methods..Demo at http://jsfiddle.net/gaby/nwCsr/
Update
to handle paste you can listen for the
paste
event..Demo at http://jsfiddle.net/gaby/nwCsr/1/
您应该使用
setInterval()
并每隔一秒左右检查一次 div 是否发生更改。如果您使用 AJAX,则可以在 AJAX 完成时触发更改事件。另外,我认为您可以为该 div 使用onKeyPressed
或onKeyUp
事件。you should use
setInterval()
and check every second or so if the div is changed. If you're using AJAX, you could trigger the change event when the AJAX is complete. Also, I think you can use theonKeyPressed
oronKeyUp
event for that div.