Ajax implements page loading and content deletion

亚连
Release: 2018-05-22 16:13:05
Original
1842 people have browsed it

This article mainly introduces the relevant information of ajax to realize page loading and content deletion in detail. It has certain reference value. Interested friends can refer to it.

The biggest benefit of ajax is that The page will not jump when loading and deleting. Most of today's web pages will choose to use ajax to write. Compared with embedding PHP code, the amount of code is reduced. At the same time, the page will be loaded faster. The following is using ajax to use the database fruit table. Take the loading page and the deletion of fruits as an example. Writing with ajax may be a bit cumbersome at first, so just think of it as a practice.

This is the fruit table:

The following is the code for the home page. First create a php file main.php

 

内容加载

水果名称 水果价格 水果产地 操作
Copy after login

I chose to display only the three columns of fruit name, price and origin in the fruit table on the page. Next we will write the loaded processing page and create a php file, jiazaiym.php

Query($sql); $str=""; foreach($arr as $v) { $str=$str.implode("^",$v)."|"; //每一行之间用“|”连接,这样最后就会多出一个“|” } $str=substr($str,0,strlen($str)-1); //把最后多出的“|”用截取字符串的方式删去 echo $str; ?>
Copy after login

After the loading page code is written, you can formally write ajax. These should be written in main.php.

Copy after login

Note:When writing ajax, pay special attention to the semicolons and commas inside, myself The comma is always written as a semicolon, and the result cannot be output. After checking that the code is correct, I find that the comma is written wrong. This is a very troublesome thing.

After writing the loading page, we have to start writing the deletion page. Create a php file shanchu.php. Deleting the page is very simple, and it is almost the same as embedding php directly before.

Query($sql,0)) { echo"OK"; } else{ echo"flase"; }
Copy after login

Next, when I want to re-write an ajax, I will find that it will not run after writing because it is not possible to delete the class inside when loading the page. Identification, this requires me to put the deletion in the loaded ajax, and at the same time encapsulate the loading into a method, which can be called when deleting.

Copy after login

The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.

Related articles:

PHP is based on reverseajaxDetailed explanation of the steps to implement real-time message push

Interview questions about AJAX (with answers)

Detailed analysis of how to use AJAX (code pasted)

The above is the detailed content of Ajax implements page loading and content deletion. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!