Copy code The code is as follows:<iframe src="1.htm" name="ifrmname" id="ifrmid"></iframe> Option 1: Use the iframe's name attribute to locate Copy code The code is as follows:<input type="button" name="Button" value="Button" onclick="document.frames('ifrmname').location.reload()"> or <input type="button" name="Button" value="Button" onclick="document.all.ifrmname.document.location.reload()"> Option 2: Use the iframe id attribute to locate Copy code The code is as follows:<input type="button" name="Button" value="Button" onclick="ifrmid.window.location.reload()"> The Ultimate Solution: When the src of the iframe is another website address (cross-domain operation) Copy code The code is as follows:<input type="button" name="Button" value="Button" onclick="window.open(document.all.ifrmname.src,'ifrmname','')"> |
<<: Sample code for implementing 3D rotation effect using pure CSS
>>: Vuex modularization and namespaced example demonstration
Here, I have mainly sorted out some commonly used...
The World Wide Web Consortium (W3C) has released a...
Without further ado, I will post the code for you...
1. Development environment vue 2. Computer system...
We all know that we need to understand the proper...
Table of contents 1. Variables Use meaningful nam...
There are many special symbols used in mathematic...
Table of contents ReactHooks Preface WhyHooks? Fo...
MySQL 8.0.12 download and installation tutorial f...
This article shares the specific code of JavaScri...
Zabbix Server Environment Platform Version: ZABBI...
1. Install shadowsocks sudo apt-get install pytho...
Mac node delete and reinstall delete node -v sudo...
Introduction 1.<iframe> tag: iframe is an i...
Table of contents Preface Solution Tool Introduct...