The iframe refresh method is more convenient

The iframe refresh method is more convenient
How to refresh iframe

1. To refresh, you can use javascript's document.fr.location.reload()

2. You can also modify document.fr.location.href to achieve the refresh function

For example:

Copy code
The code is as follows:

<iframe name="fr" width="96%" src="alert_search.do?method=findSys"></iframe>
<script type="text/javascript">
function show_syslog(id){
document.fr.location.href="/alert_search.do?method=findSys&id="+id;
}
</script>
<input type="button" onclick="javascript:show_syslog(1)">

Note: Do not use both methods at the same time. If you use them at the same time, they will be submitted twice.

Copy code
The code is as follows:

document.fr.location.href = "your.html";
document.fr.location.reload();

<<:  Detailed explanation on how to modify the default port of nginx

>>:  Example code of how to implement pivot table in MySQL/MariaDB

Recommend

English: A link tag will automatically complete href in IE

English: A link tag will automatically complete h...

How to match the size of text in web design: small text, big experience

With the rise of mobile terminals such as iPad, p...

Detailed explanation of sshd service and service management commands under Linux

sshd SSH is the abbreviation of Secure Shell, whi...

A brief discussion on the solution of Tomcat garbled code and port occupation

Tomcat server is a free and open source Web appli...

HTML+CSS makes div tag add delete icon in the upper right corner sample code

1. Requirements description Display the delete ic...

Detailed explanation of MySQL EXPLAIN output columns

1. Introduction The EXPLAIN statement provides in...

Docker custom network container interconnection

Table of contents Preface –link Custom Network As...

A Deep Dive into JavaScript Promises

Table of contents 1. What is Promise? 2. Why is t...

Implementation steps of encapsulating components based on React

Table of contents Preface How does antd encapsula...

JavaScript Document Object Model DOM

Table of contents 1. JavaScript can change all HT...

CentOS server security configuration strategy

Recently, the server has been frequently cracked ...

Solution to using html2canvas to process Dom elements with Baidu map into images

Problem 1: Baidu Map uses tiled images (the map i...

Vue resets data to its initial state

In some cases, the data in data needs to be reuse...