即使DOM发生变化,也要匹配元素

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了即使DOM发生变化,也要匹配元素相关的知识,希望对你有一定的参考价值。

If you want to trigger an event on an matched element and that element may be introduced into the DOM from an Ajax request, you can still match against it by using the livequery plugin and the following code.
  1. $('.myClassToMatchAgainst').livequery(function(event) {
  2. //do this
  3. });

以上是关于即使DOM发生变化,也要匹配元素的主要内容,如果未能解决你的问题,请参考以下文章

前端开发常用js代码片段

即使列表引用发生变化,如何重用 ngFor 的元素?

前端开发中最常用的JS代码片段

有没有办法为在刷新或 DOM 位置发生变化时不会获得无效元素的元素生成唯一选择器?

为啥即使我没有将 vuex 状态绑定到任何 html 输入元素,我的 vuex 状态也会在更改组件级别状态时发生变化?

使用文档碎片(DocumentFragments)追加DOM元素