search
HomeCommon ProblemHow jquery implements Ajax requests

The jquery method to implement Ajax requests: 1. "$.ajax()" method; 2. "$.post()" method, the code is "$.post(url, data, func, dataType) ;"; 3. "$.get()" method, the code is "$.get(url, data, func, dataType);"; 4. "$.getJSON()" method, etc.

How jquery implements Ajax requests

Operating system for this tutorial: Windows 10 system, jQuery3.6.0 version, Dell G3 computer.

jquery implements Ajax request

Ajax is used for communication between the browser and the server without refreshing the entire page. The server will no longer return the entire page, but It returns part of the data and updates the nodes through JavaScript DOM operations. Data transmission formats include xml, json and other formats, but the most commonly used is json format.
We can use the JavaScript object XMLHttpRequest to implement native Ajax, but this method is more complicated and difficult to write. jQuery has encapsulated Ajax, making it easier to initiate Ajax requests. This article briefly introduces the process of jQuery implementing Ajax:

1. Introduce the jquery.js file in the tag

 <script></script>

2. Several common jQuery Ajax methods

(1)$.ajax()
①url: link address, string Represents
②data: (optional) The data to be sent to the server, both GET and POST, will be automatically converted into the request string format, expressed in the form of Key/value pairs, and will be attached to the request as QueryString In the URL, the format is {A: '...', B: '...'}
③type: "POST" or "GET", request type
④timeout: request timeout, unit is milliseconds, value represents
⑤cache: whether to cache the request result, bool means
⑥contentType: content type, the default is "application/x-www-form-urlencoded"
⑦dataType: the data type of the server response, represented by a string; when filled in as json , there is no need to deserialize the data into json
in the callback function ⑧success: the function called back by the server after the request is successful
⑨error: the function called back by the server after the request fails
⑩complete: called after the request is completed function, whether the request is successful or failed, this function will be called; if the success and error functions are set, the function will be called after them
⑪async: whether to process asynchronously, bool means, the default is true; set this value to After false, JS will not execute downwards, but will wait for the server to return data and complete the corresponding callback function before executing downwards
⑫username: The user name carried in the access authentication request, string representation
⑬password: Returns the password carried in the authentication request, the string represents

 <script>
        function login1(){
            $.ajax({
                //${pageContext.request.contextPath}用于取后端方法的绝对路径的项目名
                url: "${pageContext.request.contextPath}/user/returnJson",
                type: "GET",
                data:&#39;{name: &#39;James&#39;}&#39;, //必须是字符串格式
                contentType:"application/json", //指定内容格式
                dataType:json,
                success: function(data) {  //括号里的data是服务器返回的数据
                    console.log(data);
                    document.getElementById("myDiv").innerText=data["name"];
                }
            });
        }
    </script>
<script>
    $(&#39;#btn1&#39;).click(function () {
        $.ajax({
            type:"post",	//提交方式
            url:&#39;${pageContext.request.contextPath}/JSONServlet&#39;,
            data:{
                bookname:  $("#bookname").val()//val() 方法返回或设置被选元素的值。
            },
            dataType: "json",   	//返回数据的格式
            success:function (responseData) {
                var html = "";
                $(&#39;#dataTable tr:not(:first)&#39;).remove(); //删除第一行之外的所有行
                // $(&#39;#dataTable > tbody > tr&#39;).remove();   // 删除所有行,表头会被删除
                console.log(responseData);
                for (var i = 0; i < responseData.length; i++) {
                    html += &#39;<tr>&#39;;
                    html += &#39;<td>&#39;+responseData[i].bookid+&#39;&#39;+&#39;<td>&#39;+responseData[i].bookname+&#39;&#39;+&#39;<td>&#39;+responseData[i].price+&#39;&#39;
                    html += &#39;&#39;;
                }
                $(&#39;#dataTable&#39;).append(html);
            },
        });
    });
</script>

(2)$.post()

Use POST method to execute Ajax request from the server Download Data.
Format: $.post(url, data, func, dataType);
Optional parameters:
①url: link address, string representation
②data: data that needs to be sent to the server, in the format {A: '…', B: '…'}
③func: The function called back by the server after the request is successful; function(data, status, xhr), where data is the data returned by the server, status is the response status, xhr is an XMLHttpRequest object. Personally, you can focus on the data parameter
④dataType: the format of data returned by the server

<script>
        function login2(){
            $.post(
                "${pageContext.request.contextPath}/user/returnJson",
                 &#39;{name: &#39;James&#39;}&#39;,
                  "application/json",
                 function(data) {
                    console.log(data);
                    document.getElementById("myDiv").innerText=data["name"];
                }
            );
        }
    </script>

(3)$.get()

Use GET method executes Ajax request and loads data from the server.
Form: $.get(url, data, func, dataType);

<script>
        function login3(){
            $.get(
                "${pageContext.request.contextPath}/user/returnJson",
                function(data) {
                    console.log(data);
                    document.getElementById("myDiv").innerText=data["name"];
                }
            );
        }
    </script>

(4)$.getJSON()

Form: $.getJSON (url, data, func);
Use GET method to execute Ajax request and load JSON format data from the server.

<script>
        function login4(){
            $.getJSON(
                "${pageContext.request.contextPath}/user/returnJson",
                function(data) {
                    console.log(data);
                    document.getElementById("myDiv").innerText=data["name"];
                }
            );
        }
    </script>

Note: Because the data format returned by the server is determined to be json, this method does not need to specify dataType.

(5)$.load()

Insert the data loaded by the server directly into a node in the specified DOM.
Format: $.load(url, data, func);
If data exists, the request will be sent using POST, and if it does not exist, the request will be sent using GET.

		<div></div>
		function login5() {
            $('#myRes').load(
                "${pageContext.request.contextPath}/user/returnJson",  
                '{name: 'James'}',
                "application/json"
            );
            }

The above is the detailed content of How jquery implements Ajax requests. For more information, please follow other related articles on the PHP Chinese website!

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
deepseek web version official entrancedeepseek web version official entranceMar 12, 2025 pm 01:42 PM

The domestic AI dark horse DeepSeek has risen strongly, shocking the global AI industry! This Chinese artificial intelligence company, which has only been established for a year and a half, has won wide praise from global users for its free and open source mockups, DeepSeek-V3 and DeepSeek-R1. DeepSeek-R1 is now fully launched, with performance comparable to the official version of OpenAIo1! You can experience its powerful functions on the web page, APP and API interface. Download method: Supports iOS and Android systems, users can download it through the app store; the web version has also been officially opened! DeepSeek web version official entrance: ht

In-depth search deepseek official website entranceIn-depth search deepseek official website entranceMar 12, 2025 pm 01:33 PM

At the beginning of 2025, domestic AI "deepseek" made a stunning debut! This free and open source AI model has a performance comparable to the official version of OpenAI's o1, and has been fully launched on the web side, APP and API, supporting multi-terminal use of iOS, Android and web versions. In-depth search of deepseek official website and usage guide: official website address: https://www.deepseek.com/Using steps for web version: Click the link above to enter deepseek official website. Click the "Start Conversation" button on the homepage. For the first use, you need to log in with your mobile phone verification code. After logging in, you can enter the dialogue interface. deepseek is powerful, can write code, read file, and create code

How to solve the problem of busy servers for deepseekHow to solve the problem of busy servers for deepseekMar 12, 2025 pm 01:39 PM

DeepSeek: How to deal with the popular AI that is congested with servers? As a hot AI in 2025, DeepSeek is free and open source and has a performance comparable to the official version of OpenAIo1, which shows its popularity. However, high concurrency also brings the problem of server busyness. This article will analyze the reasons and provide coping strategies. DeepSeek web version entrance: https://www.deepseek.com/DeepSeek server busy reason: High concurrent access: DeepSeek's free and powerful features attract a large number of users to use at the same time, resulting in excessive server load. Cyber ​​Attack: It is reported that DeepSeek has an impact on the US financial industry.

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

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)