How to prevent an iframe from reloading when moving it in the DOM

后端 未结 4 1699
北海茫月
北海茫月 2020-12-03 04:55

I have an iframe loaded with some content. I would like to move it inside the DOM without causing a refresh (I like the content inside it, I want to keep it).

I\'m d

4条回答
  •  北海茫月
    2020-12-03 05:30

    If you're trying to move it visually, you can try modifying the CSS to use absolute positioning or some other adjustments.

    However, if you're trying to actually pull it out of the DOM and insert it somewhere else, you won't be able to avoid a reload.

提交回复
热议问题