在jquery中监听类的更改

时间:2010-09-17 00:09:24

标签: javascript jquery

在jquery中是否有一种方法可以监听节点类的更改,然后在类更改为特定类时对其执行某些操作?具体来说,我正在使用带有幻灯片的jquery工具选项卡插件,并且在播放幻灯片时,我需要能够检测焦点何时在特定选项卡/锚点上,以便我可以取消隐藏特定的div。

在我的具体例子中,我需要知道何时:

<li><a class="nav-video" id="nav-video-video7" href="#video7-video">Video Link 7</a></li>

在添加“current”类时更改了以下内容:

<li><a class="nav-video" id="nav-video-video7 current" href="#video7-video">Video Link 7</a></li>

然后我想在那一刻取消隐藏div。

谢谢!

4 个答案:

答案 0 :(得分:26)

您可以绑定DOMSubtreeModified事件。我在这里添加一个例子:

$(document).ready(function() {
  $('#changeClass').click(function() {
    $('#mutable').addClass("red");
  });

  $('#mutable').bind('DOMSubtreeModified', function(e) {
    alert('class changed');
  });
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div id="mutable" style="width:50px;height:50px;">sjdfhksfh
  <div>
    <div>
      <button id="changeClass">Change Class</button>
    </div>

http://jsfiddle.net/hnCxK/13/

答案 1 :(得分:2)

以下是一些可能提供解决方案的其他发现:

  1. Most efficient method of detecting/monitoring DOM changes?
  2. How can I detect when an HTML element’s class changes?
  3. Monitoring DOM Changes in JQuery
  4. 正如#2中所建议的那样,为什么不让current成为添加的类而不是ID,并让以下CSS处理显示/隐藏操作。

    <style type='text/css>
        .current{display:inline;}
        .notCurrent{display:none;}
    </style>
    

    也值得研究.on() in jquery

答案 2 :(得分:0)

有了这样的东西,你基本上有两个选择,回调或民意调查。

由于当DOM以这种方式变异(可靠地跨所有平台)时,您可能无法触发事件,因此您可能不得不求助于轮询。为了更好一些,您可以尝试使用requestAnimationFrame api,而不是仅使用setInterval这样的东西。

采用最基本的方法(即使用setInterval和假设jQuery),您可以尝试这样的事情:

var current_poll_interval;
function startCurrentPolling() {
  current_poll_interval = setInterval(currentPoll, 100);
}
function currentPoll() {
  if ( $('#nav-video-7').hasClass('current') ) {
    // ... whatever you want in here ...
    stopCurrentPolling();
  }
}
function stopCurrentPolling() {
  clearInterval(current_poll_interval);
}

答案 3 :(得分:0)

我知道这很旧,但是接受的答案使用DOMSubtreeModified,现在MutationObserver已弃用。这是一个使用jQuery的示例(测试here):

// Select the node that will be observed for mutations
let targetNode = $('#some-id');

// Options for the observer (which mutations to observe)
const config = { attributes: true, childList: false, subtree: false, attributeFilter: ['class'] };

// Callback function to execute when mutations are observed
const callback = function(mutationsList, observer) {
    for (let mutation of mutationsList) {
        if (mutation.attributeName === "class") {
            var classList = mutation.target.className;
            // Do something here with class you're expecting
            if(/red/.exec(classList).length > 0) {
                console.log('Found match');
            }
        }
    }
};

// Create an observer instance linked to the callback function
const observer = new MutationObserver(callback);

// Start observing the target node for configured mutations
observer.observe(targetNode[0], config);

// Later, you can stop observing
observer.disconnect();