如何使用jquery监控div是否更新?

发布于 2024-12-19 11:33:27 字数 73 浏览 0 评论 0原文

我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

笑忘罢 2024-12-26 11:33:27

为此,您可以查看突变事件。在你的情况下

$('#myDIV').bind('DOMSubtreeModified', function(e) {
});

,每次 DOM 子树中发生任何变化时都应该触发。但我不确定它是否适用于 contentEditable。

示例: http://jsfiddle.net/J6ARW/

注意一点:突变事件被声明为“已弃用”,因此它可能是一个很好的工具,但对于任何生产代码来说可能并不明智。

You could have a look into mutation events for that purpose. In your case

$('#myDIV').bind('DOMSubtreeModified', function(e) {
});

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.

七秒鱼° 2024-12-26 11:33:27

您可以使用 .blur().keypress() 事件处理方法。

演示位于 http://jsfiddle.net/gaby/nwCsr/


更新

来处理粘贴,您可以监听 paste 事件..

$('selector').bind('paste', function(){
  // handle 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..

$('selector').bind('paste', function(){
  // handle paste ..
});

Demo at http://jsfiddle.net/gaby/nwCsr/1/

巷雨优美回忆 2024-12-26 11:33:27

您应该使用 setInterval() 并每隔一秒左右检查一次 div 是否发生更改。如果您使用 AJAX,则可以在 AJAX 完成时触发更改事件。另外,我认为您可以为该 div 使用 onKeyPressedonKeyUp 事件。

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 the onKeyPressed or onKeyUp event for that div.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文