小编典典

如何在jquery中检测何时将新元素添加到文档中?

css

我如何检测何时在jquery中将新元素添加到文档中?

说明:我想知道何时将具有“ column-header”类的元素添加到文档中。当我计划在这些元素上运行一些JavaScript时。

我怎样才能做到这一点 ?我使用jQuery javascript库。


阅读 356

收藏
2020-05-16

共1个答案

小编典典

如果您想在其上执行一些jQuery,则还可以执行诸如livequery(额外插件)之类的操作:

$('column-header').livequery(function()
{
    // do things here with your column-header, like binding new events and stuff.
    // this function is called when an object is added.
    // check the API for the deletion function and so on.
});
2020-05-16