How to close an iframe?

后端 未结 3 883
执笔经年
执笔经年 2021-01-06 03:54

After opening an iframe, I sometimes need to close it. Thus far, I just remove the iframe from its parent node, thus cutting it off from the DOM. However, I\'m finding tha

相关标签:
3条回答
  • 2021-01-06 04:10

    Create a blank.htm file on your site. Have the IFrame SRC set to the blank.htm, then remove the IFRAME.

    0 讨论(0)
  • 2021-01-06 04:14

    try this..

    <a href="Home.html" target="_parent">
    
    0 讨论(0)
  • 2021-01-06 04:20

    if your using jQuery then you can use $.remove('iframe object id') method. This would remove the DOM object from the page and in this iframe would be removed.

    0 讨论(0)
提交回复
热议问题