我已将链接元素添加到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");
});
}
它遍历我拥有的四个元素,但不会删除它们。它们保持可见。我该如何删除这些?
答案 0 :(得分:4)
.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");
});
}