jQuery watch div

时间:2010-07-13 03:29:53

标签: jquery

如果div中的内容发生变化,有没有办法观看?

让我说我有:

<div id="hello"><p>Some content here</p></div>

在5秒后的某个时间点变为:

<div id="hello"><ul><li>This is totally different!</li></ul></div>

如何通过回调或其他方式通知此事?在大多数情况下,我可以获取正在插入的javascript,告诉我。但我想知道它是否可能。

6 个答案:

答案 0 :(得分:63)

jQuery .change()方法仅适用于表单字段。

我为你写了一个小jQuery插件:

<!-- jQuery is required -->

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>


<!-- this is the plugin -->

<script>
  jQuery.fn.contentChange = function(callback){
    var elms = jQuery(this);
    elms.each(
      function(i){
        var elm = jQuery(this);
        elm.data("lastContents", elm.html());
        window.watchContentChange = window.watchContentChange ? window.watchContentChange : [];
        window.watchContentChange.push({"element": elm, "callback": callback});
      }
    )
    return elms;
  }
  setInterval(function(){
    if(window.watchContentChange){
      for( i in window.watchContentChange){
        if(window.watchContentChange[i].element.data("lastContents") != window.watchContentChange[i].element.html()){
          window.watchContentChange[i].callback.apply(window.watchContentChange[i].element);
          window.watchContentChange[i].element.data("lastContents", window.watchContentChange[i].element.html())
        };
      }
    }
  },500);
</script>



<!-- some divs to test it with -->

<p>Testing it:  (click on divs to change contents)</p>

<div id="a" onclick="$(this).append('i')">Hi</div>
<div id="b" onclick="$(this).append('o')">Ho</div>
<div class="c" onclick="$(this).append('y')">He</div>
<div class="c" onclick="$(this).append('w')">He</div>
<div class="c" onclick="$(this).append('a')">He</div>




<!-- this is how to actually use it -->

<script>
  function showChange(){
    var element = $(this);
    alert("it was '"+element.data("lastContents")+"' and now its '"+element.html()+"'");
  }

  $('#a').contentChange(function(){  alert("Hi!") });
  $('div#b').contentChange( showChange );
  $('.c').contentChange(function(){  alert("He he he...") });
</script>

请注意,这只会监视元素(html)内容的变化,而不是属性。

答案 1 :(得分:5)

当HTML / DOM内容发生变化时,不会触发本机jQuery / DOM事件。

你可以(如果你感到特别浪费)做这样的事情:

$(function() {
  var $div = $("#hello");
  var html = $div.html();
  var checking = setInterval(function() {
    var newhtml = $div.html();
    if (html != newhtml) {
      myCallback();
      html = newhtml;
    }
  },100);

  function myCallback() {
    alert('content changed!');
    // if you only want it to fire once, uncomment the following:
    // clearInterval(checking);
  }
});

请记住,每100毫秒调用.html()可能不是您网站效果的最佳选择。

jsFiddle mockup

答案 2 :(得分:2)

也许,监控修改图层内容的事件来源是合理的吗?比如说,用户在内容可能已经改变之后点击了任何地方(阅读,“点击”)。因此,如果您在单击后检查.html()而不是使用循环 - 它可能会节省一些系统资源。

答案 3 :(得分:1)

谁/什么会改变这个?如果它是你控制的一些JS,那么使用它来触发你的回调。显然,用户无法改变这一点。

如果您想观看<input>元素等,请使用“更改”事件。 jQuery版本:http://api.jquery.com/change/

答案 4 :(得分:0)

这是一个代码示例,在给定值更改时调用简单警报:

<!DOCTYPE html>
<html lang="en">
<head>
    <title>watchu, watchu, watchu want, watchu want?</title>
</head>
<body>

    <div id='foo'>Hello World!</div>

    <p><input type="button" id="ChangeButton" value="Change It" /></p>

    <script type="text/javascript" src="http://code.jquery.com/jquery-1.4.2.min.js"></script>
    <script type="text/javascript">

        $(function () {

            $('#ChangeButton').click(function () {
                $('#foo').html('Awfveeterzain!');
            });

            window.watchForChangeOriginalValue = $('#foo').html();
            watchForChange();
        });

        function watchForChange() {
            if ($('#foo').html() != window.watchForChangeOriginalValue)
                alert('the value changed!');
            else
                window.setTimeout(watchForChange, 500);
        }

    </script>
</body>
</html>

答案 5 :(得分:0)

有些活动名为DOMNodeInsertedDOMNodeRemovedDOMSubtreeModified。哪个检查是否添加或删除了任何元素,或者在div中更改了任何内部Html。为此,您需要setInterval()功能。

 function DivChange() {      
    $('#YourDiv').bind('DOMNodeInserted DOMNodeRemoved', function (event) {
        if (event.type == 'DOMNodeInserted') {
            alert('Content added');
        } else if (event.type == 'DOMNodeRemoved')  {
            alert('Content removed');
        } else {
            alert('Inner Html changed for some content');
        }
    });
}
var DivTimer = setInterval(DivChange, 1000);

以上功能将检查Div是否每次更改内容

  

注意:IE

不支持此事件