gpt4 book ai didi

jQuery:如何包装()动态加载的元素?

转载 作者:行者123 更新时间:2023-11-30 23:45:21 25 4
gpt4 key购买 nike

我正在为一个本身没有 HTML 的第 3 方应用程序换肤。这一切都来自 onLoad 事件和一堆 ajax 调用。

我将 jQuery 添加到页面中。我需要wrapp()一个动态加载的元素。如果需要,我可以添加一个插件。

我该怎么做?谢谢。

更新:这可行,但是有更好的方法吗?

$(document).ready(function() {

(function() {
var length = $(".applicationShell").length;

var h = setInterval(function () {
if ($(".applicationShell").length > length) {
length = $(".applicationShell").length;
clearInterval(h);


$(".applicationShell").addClass("test")

}
}, 100);
})();


});

最佳答案

嗯,看来我找不到更好的解决方案了。 :( 这是我用过的。

$(document).ready(function() {

(function() {
var length = $(".applicationShell").length;

var h = setInterval(function () {
if ($(".applicationShell").length > length) {
length = $(".applicationShell").length;
clearInterval(h);


$(".applicationShell").addClass("test")

}
}, 100);
})();


});

关于jQuery:如何包装()动态加载的元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3399054/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com