Home  >  Article  >  Web Front-end  >  Seven implementation codes for JS refreshing pages outside the frame_javascript skills

Seven implementation codes for JS refreshing pages outside the frame_javascript skills

WBOY
WBOYOriginal
2016-05-16 17:41:46913browse

Statement 1. window.parent.frames[1].location.reload();

Statement 2. window.parent.frames.bottom.location.reload();

Statement 3. window.parent.frames["bottom"].location.reload();

statement 4. window.parent.frames.item(1).location.reload();

statement 5. window.parent.frames.item('bottom').location.reload();

statement 6. window.parent.bottom.location.reload();

statement 7 . window.parent['bottom'].location.reload();

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn