Home Backend Development PHP Tutorial Back, forward and refresh after PHP development combined with AJAX (1)_PHP tutorial

Back, forward and refresh after PHP development combined with AJAX (1)_PHP tutorial

Jul 15, 2016 pm 01:23 PM
ajax php refresh and open of Introduction combine part

Introduction

Part 1 introduces how to develop a basic photo album with Sajax, PHP and JavaScript. As we build the history stack for our application, we'll rely on client-side technology and tie it directly into the code from Part 1. This article assumes the reader has knowledge of JavaScript and browser cookies.

Save state in browser

When surfing the Internet, you are always going from one page to another, and one site to another. In this process, the web browser faithfully records the history of where you have been, creating a digital trail of breadcrumbs that can be followed step by step back to the starting point. The back button allows you to go back to where you were before your previous action, and in this sense it is the undo button of the web.

The Web is a media divided by pages. The back and forward buttons in the browser toolbar guide the browser from one page to another. When Macromedia's Flash became all the rage, developers and users discovered that Rich Internet Applications (RIAs) broke the mold. Users can browse several sites, then log into a Flash-based site and spend a few minutes on it. The game ends when the user clicks the back button. The user has not returned to the previous Flash site and has no idea where he has arrived.

The same is true for websites based entirely on Ajax - another form of RIA. Websites that allow users to interact with a page multiple times are susceptible to the back button, or any history button (for that matter). The problem with the forward and reload buttons is the same as the problem with the back button. The internal history mechanism built into web browsers is an inescapable problem. For security reasons, developers cannot tamper with the browser history or any related buttons. There is also the issue of usability. Imagine how confused the user would be if the back button suddenly popped up with a cryptic warning or the user was sent to a new website.

Build a history stack

Although the browser history cannot be changed, you can build a history for use in the RIA. Obviously, it should be somewhat separate from the browser's standard navigation tools, but as stated earlier, rich applications depart somewhat from the Web's standard page-to-page model.

We will build a stack to manage the application's historical event records, which means storing a list and adding elements at the end of the list. The stack is used to store data in last-in-first-out (LIFO) order. Although the data at the top of the stack is not deleted during rollback, this model is very close to our needs. In JavaScript, stacks can be managed using arrays.

Along with the stack is a pointer indicating our current position in the stack. When we click in the application, a new event is pushed to the top of the stack, with the pointer pointing to the last element added. When you click the application's back and forward buttons, new events are not added to the stack, but the stack's pointer is moved. Think about what happens in the history stack when you use the back button: the browser returns to the last page viewed, and the forward button that was previously unavailable suddenly becomes available. When browsing a new page, the forward button turns gray again. Elements saved later in the browser history are popped off the stack, and new events are pushed onto the top of the stack. We will reproduce this behavior in the history stack we create.

Our goal is to create a set of usable history buttons: Back, Forward, and Refresh, as shown in Figure 1.


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/446841.htmlTechArticleIntroduction Part 1 introduces how to develop a basic photo album with Sajax, PHP and JavaScript. In building the history stack for the application, we will rely on client-side technology and bring it directly...
Statement of this Website
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

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 Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

See all articles