gpt4 book ai didi

javascript - 在类加载时删除图像

转载 作者:行者123 更新时间:2023-11-30 12:59:58 25 4
gpt4 key购买 nike

我正在尝试在某个类出现在页面上后删除图像。请帮助我的代码做错了什么,不要在 jquery 和 js 中亮。感谢您的帮助。

$( document ).ready(function() {

function blah (){
if ($(".Stage_lines_id")[0]){
$('img[src*="still_metrix.jpg"]').remove();

}
setInterval(blah, 1000 * 1);
}

});

最佳答案

在你的代码中,问题是 blah 没有在 dom ready 上调用,setInterval 必须在 ready 内发生,而不是在 内废话

您也可以在删除图像后清除间隔

你需要类似的东西

jQuery(function($) {

function blah (){
if ($(".Stage_lines_id").length){
$('img[src*="still_metrix.jpg"]').remove();
clearInterval(timer);
}
}
var timer = setInterval(blah, 1000 * 1);

});

关于javascript - 在类加载时删除图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17561934/

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