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

时间:2015-08-05 14:04:46

标签: javascript jquery html iframe

我已将链接元素添加到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");
});
}

它遍历我拥有的四个元素,但不会删除它们。它们保持可见。我该如何删除这些?

1 个答案:

答案 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");
    });
    }

Documentation here