search
HomeWeb Front-endJS Tutorialjs returns to the previous page and refreshes the code _javascript skills

1: JS reload the page, refresh locally, return to the previous page
Copy the code The code is as follows:

How to write the JS code that returns the first two pages and refreshes them.
Copy code The code is as follows:

history.go(-2);
location .reload();

Two: js method
Copy code The code is as follows:

asp Method to automatically return and refresh:
Copy code The code is as follows:

response.Write(" ")

Generally used to submit an action to a page and then return to the previous page and refresh it!

1. Javascript returns to the previous page history.go(-1), returns two pages: history.go(-2);
2. history.back().
3. window.history .forward() returns to the next page
4. window.history.go (return to which page, you can also use the visited URL)

Example:
Previous page

response.Write("")
response.Write("")
Previous page

Page jump: onclick="window.location.href='list.aspx'"
P.S.
Tips (JS citing JS):

Several ways to refresh the page using Javascript:

1 history.go(0)
2 location.reload()
3 location=location
4 location.assign(location)
5 document.execCommand('Refresh')
6 window.navigate(location)
7 location.replace(location)
8 document.URL=location.href

Methods to automatically refresh the page:
1. Automatically refresh the page: Add the following code to the

area

Of which 20 refers to refreshing the page every 20 seconds.

2. Automatic page jump: add the following code to the area

The 20th finger will jump to the http://www.javaeye.com page after 20 seconds

3. The page automatically Refresh the js version


How ASP.NET outputs the refresh parent window script statement1. this.response.write("<script>opener.location.reload();</script>");

2. this.response.write("<script>opener.window.location.href = opener.window.location.href;</script>");
3. Response.Write("")

JS script statement to refresh the frame

//How to refresh the page containing the frame using

(OrRefresh )

//How to refresh the page of another frame using


If you want to refresh when the window is closed or you want to refresh when the window is opened, in .

Refresh when opening the window
Refresh when closing




Three: Use JS in ASP to return to the previous page and refresh
Use JS in ASP to return to the previous page and refresh it. I think it is often used when developing websites using ASP. But there are several ways to write it, but the purpose is the same.

Copy code The code is as follows:

response.write("Deleted successfully! font>")
% >

The function implemented by this code is to inform the user that if the implemented function has been achieved, but after returning It is best to refresh the original page so that new information is displayed or deleted items are not displayed. But this code cannot refresh the original web page when returning.
So you need to add this piece of code to the original page:
<script> <BR>if(window.name != "Bencalie"){ <BR>//If the name attribute of the page is not specified Refresh it with the name <BR>location.reload(); <BR>window.name = "Bencalie"; <BR>} <BR>else{ <BR>//If the name attribute of the page is the specified name, nothing Do not do it, avoid constant refreshing <BR>window.name = ""; <BR>} <BR></script>

This way we can achieve our goal - return to the top page and refresh.
Of course there is a simpler code than this, response.write"<script>alert('Deletion successful!');window.location='Original page'';</script>"
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
在 iPhone 上刷新网页的 6 种方法在 iPhone 上刷新网页的 6 种方法Feb 05, 2024 pm 02:00 PM

当您在iPhone上浏览网页时,加载的内容会暂时存储,只要浏览器应用保持打开状态。然而,网站会定期更新内容,因此刷新页面是清除旧数据并查看最新发布内容的有效方式。这样,您可以始终获得最新的信息和体验。如果您想在iPhone上刷新页面,以下帖子将向您解释所有方法。如何在Safari上刷新网页[4种方法]有几种方法可以刷新您在iPhone上的Safari浏览器App上查看的页面。方法1:使用“刷新”按钮刷新您在Safari浏览器上打开的页面的最简单方法是使用浏览器标签栏上的“刷新”选项。如果Safa

F5刷新密钥在Windows 11中不起作用F5刷新密钥在Windows 11中不起作用Mar 14, 2024 pm 01:01 PM

您的Windows11/10PC上的F5键是否无法正常工作?F5键通常用于刷新桌面或资源管理器或重新加载网页。然而,我们的一些读者报告说,F5键正在刷新他们的计算机,并且无法正常工作。如何在Windows11中启用F5刷新?要刷新您的WindowsPC,只需按下F5键即可。在某些笔记本电脑或台式机上,您可能需要按下Fn+F5组合键才能完成刷新操作。为什么F5刷新不起作用?如果按下F5键无法刷新您的电脑或在Windows11/10上遇到问题,可能是由于功能键被锁定所致。其他潜在原因包括键盘或F5键

PHP技巧:快速实现返回上一页功能PHP技巧:快速实现返回上一页功能Mar 09, 2024 am 08:21 AM

PHP技巧:快速实现返回上一页功能在网页开发中,经常会遇到需要实现返回上一页的功能。这样的操作可以提高用户体验,让用户更加方便地在网页之间进行导航。在PHP中,我们可以通过一些简单的代码来实现这一功能。本文将介绍如何快速实现返回上一页功能,并提供具体的PHP代码示例。在PHP中,我们可以使用$_SERVER['HTTP_REFERER']来获取上一页的URL

如何快速刷新网页?如何快速刷新网页?Feb 18, 2024 pm 01:14 PM

页面刷新在我们日常的网络使用中非常常见,当我们访问一个网页后,有时候会遇到一些问题,比如网页加载不出来或者显示不正常等。这时候我们通常会选择刷新页面来解决问题,那么如何快速地刷新页面呢?下面我们就来探讨一下页面刷新的快捷键。页面刷新快捷键是一种通过键盘操作来快速刷新当前网页的方法。在不同的操作系统和浏览器中,页面刷新的快捷键可能有所不同。下面我们以常见的W

MySQL插入数据后返回什么结果?MySQL插入数据后返回什么结果?Mar 01, 2024 am 10:27 AM

MySQL是一种广泛使用的关系型数据库管理系统,用于存储和管理数据。当我们想要往数据库表中插入新的数据时,通常会使用INSERT语句来实现。在MySQL中,当执行INSERT语句成功插入数据时,会返回一个结果,即插入操作的结果。在本文中,我们将详细讨论MySQL插入数据后返回的结果,并提供一些具体的代码示例。1.插入数据后返回的结果在MySQL中,当成功执

如何使用Vue实现返回上一页特效如何使用Vue实现返回上一页特效Sep 19, 2023 pm 01:07 PM

如何使用Vue实现返回上一页特效在前端开发中,经常会遇到需要返回上一页的情况。通过添加返回按钮,可以提供更好的用户体验。本文将介绍如何使用Vue框架来实现返回上一页特效,并提供相应的代码示例。首先,在Vue项目中,需要创建一个页面作为上一页。我们可以通过VueRouter来设置路由,每个路由对应一个组件。在上一页中,我们可以添加一个返回按钮,并通过点击事件

react页面传值刷新后值消失怎么办react页面传值刷新后值消失怎么办Dec 29, 2022 am 11:11 AM

react页面传值刷新后值消失的解决办法:1、刷新页面,查看state里面的数据是否会清空;2、通过“const name = location.query.name;const id = location.query.id;”方法在跳转链接中增加参数,即可在实现传参的同时刷新页面后数据不会丢失。

键盘刷新快捷键是哪个键盘刷新快捷键是哪个Feb 25, 2024 pm 10:38 PM

键盘刷新快捷键是哪个随着电脑技术的发展,键盘成为我们日常工作和生活中不可或缺的设备。键盘的功能远不止输入文字,它也常常用来操作电脑的各种功能,提高我们的工作效率。而键盘的快捷键更是让我们能够更快速、便捷地完成各种操作。在平时使用电脑的过程中,我们经常会遇到需要页面刷新的情况。当我们打开网页或者软件运行时,有时候页面会出现卡顿或者无法加载的情况,这时候刷新页面

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Atom editor mac version download

Atom editor mac version download

The most popular open source editor