gpt4 book ai didi

javascript - 如何使用 JQuery 删除 iframe 中的元素?

转载 作者:搜寻专家 更新时间:2023-10-31 08:16:58 24 4
gpt4 key购买 nike

我已将链接元素添加到 iframe 的 (ivuFrm_page0ivu1) 内容,并希望在选择按钮时删除这些元素。我使用的代码在这里:

function removeAddedElements(){

console.log("called removeAddedElements()");
$("#ivuFrm_page0ivu1").contents().find(".linkUp").each(function (index, element) {
$(this).remove
console.log("removed one linkUp");
});
}

它遍历我拥有的四个元素,但不删除它们。他们保持可见。我怎样才能删除这些?

最佳答案

.remove 不是 jquery 中的有效函数。试试 $(this).remove()

function removeAddedElements(){

console.log("called removeAddedElements()");
$("#ivuFrm_page0ivu1").contents().find(".linkUp").each(function (index, element) {
$(this).remove()
console.log("removed one linkUp");
});
}

Documentation here

关于javascript - 如何使用 JQuery 删除 iframe 中的元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31834826/

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