1. Application Scenarios Parent page a.jsp Subpage b.jsp, as the page pointed to by the iframe embedded in page a Copy code The code is as follows:<body> <iframe id="frame" src="b.jsp" .../> </body> Now an operation is performed in page b. After the operation is completed, the iframe embedded in page a needs to be refreshed. 2. Ideas Find page a in page b, then find the iframe in page a, and reassign the src attribute of the iframe. 3. Implementation In b.jsp Copy code The code is as follows:function refresh(){ var frame = window.parent.document.getElementById("frame"); var path = frame.getAttribute("src"); frame.setAttribute("src", path); } This only refreshes the frame, achieving a partial refresh effect. |
<<: How to pass parameters to JS via CSS
>>: Typical cases of MySQL index failure
About Docker Swarm Docker Swarm consists of two p...
There is such a requirement: an import button, cl...
1. Brief Introduction Vue.js allows you to define...
This article shares the specific code of swiper+e...
This article shares the specific code of the vue-...
A few months after entering the industry in 2005, ...
1. Introduction By enabling the slow query log, M...
Problems that may arise from optimization Optimiz...
Recently I've been working on a framework tha...
Based on daily development experience and relevan...
Preface It is very simple to create a server in n...
Flexible layout (Flexbox) is becoming increasingl...
This article example shares the specific implemen...
1. Warm and gentle Related address: http://www.web...
Preparation First, you need to download nodejs, w...