Problem Description html <iframe id="h5Content" src=""></iframe> js $("#h5Content").attr("src","${h5.url}"); h5.url corresponds to a page edited by ueditor and saved in the database. After modifying the content of this page and submitting it, the page presented in the iframe does not change. reason The content in the iframe will be refreshed only when the value of the iframe's src changes. So although the page corresponding to the URL of my code has changed, the URL has not changed, that is, the value of the src of the iframe has not changed. Therefore, the content is not refreshed; Solution Now that the cause is found, the solution is very easy. Just think of any way to change the value of the iframe's src. $("#h5Content").attr("src","${h5.url}"+"?time="+new Date().getTime()); Pass the current time after the question mark to the URL and the problem is solved. This value has no other use except to change the value of src. PS: Complete solution to the problem of iframe cache not refreshing I encountered a very strange problem these two days. A page nested an iframe page. When this page was submitted and jumped to this page again, the page in the iframe should have refreshed the data, but it did not refresh under IE (no problem under FF). It must be refreshed manually by pressing F5 or opening a new browser tab. Otherwise, pressing Enter on the browser of this page is useless. After consulting a lot of information, I finally found that it was the iframe cache mechanism that was causing trouble. The following method can solve it: <script type="text/javascript"> var randomnumber = Math.floor(Math.random()*100000) document.write(' <iframe src="http://www.freedonation.com/hunger/hunger_thankyou.php3?random='+randomnumber+'" name="aframe" width="100%" height="400"></iframe>') </script> By adding a parameter with a random number as the request value, the browser considers that each requested page is new and ensures that the iframe page is reloaded each time. This concludes this article on how to solve the problem when the content pointed to by the iframe's src does not refresh. For more information about the problem when the content pointed to by the iframe's src does not refresh, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future! |
<<: This article will help you understand JavaScript variables and data types
>>: Ubuntu boot auto-start service settings
What is element-ui element-ui is a desktop compon...
Enable remote access rights for mysql By default,...
If you have a choice, you should use UTF-8 In fac...
Suddenly when I logged into MySQL, it said that a...
Table of contents Preface iframe implements sandb...
Table of contents Preface Environment Preparation...
question First, let me talk about the problem I e...
<br />From the launch of NetEase's new h...
Div basic layout <div class="main"&g...
Table of contents 1. What is block scope? 2. Why ...
Table of contents nextTick Mixins $forceUpdate se...
Table of contents 1. Function Binding 2. With par...
Absolute positioning method: (1) Set the parent e...
What are slots? We know that in Vue, nothing can ...
Wired network: Ethernet Wireless network: 4G, wif...