Detailed explanation of the solution to the problem that the content pointed to by the iframe's src does not refresh

Detailed explanation of the solution to the problem that the content pointed to by the iframe's src does not refresh

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.
My solution at the time was as follows:

$("#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

Recommend

element-ui Mark the coordinate points after uploading the picture

What is element-ui element-ui is a desktop compon...

How to modify mysql permissions to allow hosts to access

Enable remote access rights for mysql By default,...

Why web page encoding uses utf-8 instead of gbk or gb2312?

If you have a choice, you should use UTF-8 In fac...

Windows cannot start MySQL service and reports error 1067 solution

Suddenly when I logged into MySQL, it said that a...

A brief discussion on several ways to implement front-end JS sandbox

Table of contents Preface iframe implements sandb...

Three Vue slots to solve parent-child component communication

Table of contents Preface Environment Preparation...

The solution of html2canvas that pictures cannot be captured normally

question First, let me talk about the problem I e...

User experience of portal website redesign

<br />From the launch of NetEase's new h...

JavaScript ES new feature block scope

Table of contents 1. What is block scope? 2. Why ...

Summary of Vue's common APIs and advanced APIs

Table of contents nextTick Mixins $forceUpdate se...

VUE Getting Started Learning Event Handling

Table of contents 1. Function Binding 2. With par...

How to make CSS child elements highly consistent with parent elements

Absolute positioning method: (1) Set the parent e...

Detailed analysis of the usage and application scenarios of slots in Vue

What are slots? We know that in Vue, nothing can ...

Introduction to network drivers for Linux devices

Wired network: Ethernet Wireless network: 4G, wif...