gpt4 book ai didi

javascript - 从文档中删除图像,但不在此类中

转载 作者:行者123 更新时间:2023-12-02 18:47:02 25 4
gpt4 key购买 nike

我想删除 iframe 中的图像,除了在某些类中找到的图像。我插入了一些变量:

var class = '.class';
var index = '5';


$('#iframe').contents().find('* img').not(class + ':eq('+ index +')' + ' img').remove();

据我了解,这应该删除除类里面的图像之外的所有内容。它不起作用,所有图像都被删除。 not 选择器似乎无效。我究竟做错了什么?我还能尝试什么?

最佳答案

我只是使用一个过滤器,更容易阅读和控制。

$('#iframe').contents().find('img').parent().filter(function() {
return !($(this).hasClass('class') && $(this).index() == 5);
}).remove();

顺便说一句,class 是一个保留关键字,而不是一个好的变量名称。

关于javascript - 从文档中删除图像,但不在此类中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16263089/

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