Ajax實現(xiàn)局部刷新的方法實例
目錄

前言

最近復(fù)習(xí)了一下jquery的一些內(nèi)容,特此整理一下一些能用的得到的知識點,以前才學(xué)jquery的時候壓根就沒有注意到那么多的細(xì)節(jié),另外最近一直都在整理前端的一些工作中學(xué)到的小經(jīng)驗,大概還會有十篇左右的內(nèi)容,就會慢慢開始整理后端,框架,以及數(shù)據(jù)庫的一些小知識點

一、 ajax是什么?

概念: asynchronous javascript and xml 異步的javascript 和 xml

1、異步和同步:客戶端和服務(wù)器端相互通信的基礎(chǔ)上

     -> 客戶端必須等待服務(wù)器端的響應(yīng)。在等待的期間客戶端不能做其他操作。

     ->客戶端不需要等待服務(wù)器端的響應(yīng)。在服務(wù)器處理請求的過程中,客戶端可以進行其他的操作

2、ajax 是一種在無需重新加載整個網(wǎng)頁的情況下,能夠更新部分網(wǎng)頁的技術(shù)。

     ->通過在后臺與服務(wù)器進行少量數(shù)據(jù)交換,ajax 可以使網(wǎng)頁實現(xiàn)異步更新。這意味著可以在不重新加載整個網(wǎng)頁的情況下,對網(wǎng)頁的某部分進行更新。

     -> 傳統(tǒng)的網(wǎng)頁(不使用 ajax)如果需要更新內(nèi)容,必須重載整個網(wǎng)頁頁面。

二、實現(xiàn)方式:

1.原生的js實現(xiàn)方式(了解)

javascript代碼如下(示例):

	//javascript代碼
 var xmlhttp;//1.創(chuàng)建核心對象
 if (window.xmlhttprequest) {// code for ie7+, firefox, chrome, opera, safari
  xmlhttp = new xmlhttprequest();
 } else {// code for ie6, ie5
  xmlhttp = new activexobject("microsoft.xmlhttp");
 }
 //2. 建立連接
 /* 參數(shù):
  1. 請求方式:get、post
   * get方式,請求參數(shù)在url后邊拼接。send方法為空參
   * post方式,請求參數(shù)在send方法中定義
  2. 請求的url:
  3. 同步或異步請求:true(異步)或 false(同步)
  */
  //將url改成你自己的地址
 xmlhttp.open("get", "<%=request.getcontextpath()%>/testdemo?name=zhangsan", true);
 //3、將請求發(fā)送到服務(wù)器。
 xmlhttp.send();
 //4.接受并處理來自服務(wù)器的響應(yīng)結(jié)果
 //獲取方式 :xmlhttp.responsetext
 //當(dāng)xmlhttp對象的就緒狀態(tài)改變時,觸發(fā)事件onreadystatechange。
 //接收服務(wù)器端的響應(yīng)(readystate=4表示請求已完成且響應(yīng)已就緒 status=200表示請求響應(yīng)一切正常)
 xmlhttp.onreadystatechange = function () {
  //判斷readystate就緒狀態(tài)是否為4,判斷status響應(yīng)狀態(tài)碼是否為200
  if (xmlhttp.readystate == 4 && xmlhttp.status == 200) {
  //獲取服務(wù)器的響應(yīng)結(jié)果
  var responsetext = xmlhttp.responsetext;
  alert(responsetext);
  }
 }

java后端接收代碼如下(示例):

		//.取得參數(shù),
 string name=request.getparameter("name");
 system.out.println(name);//打印輸出取得的參數(shù)
 //將數(shù)據(jù)信息回寫給ajax
 response.getwriter().write("hello");

2.jqeury實現(xiàn)方式

代碼如下(示例):

1. $.ajax()

    -> 語法:$.ajax({鍵值對});

代碼如下(示例):

	//使用$.ajax()發(fā)送異步請求
		 $.ajax({
  url:"<%=request.getcontextpath()%>/testdemo" , // 請求路徑
  type: "post", //請求方式
  data: {"name": "zhangsan"},//請求參數(shù)
  datatype: "json", //設(shè)置接受到的響應(yīng)數(shù)據(jù)的格式,還有很多格式,如:text
  //async:false,//默認(rèn)是true(異步),false(同步)
  success: function (data) {//響應(yīng)成功后的回調(diào)函數(shù)
   alert(data);
   }
  },
  error: function () {
   alert("出錯啦...");
  },
  });
  
	//java代碼和上述java代碼一樣即可

2. $.get():發(fā)送get請求(ajax的簡化)

-> 語法:$.get(url, [data], [callback], [type])

    * url:請求路徑

    * data:請求參數(shù)

    * callback:回調(diào)函數(shù)

    * type:響應(yīng)結(jié)果的類型

代碼如下(示例):

 $.get("<%=request.getcontextpath()%>/testdemo",{name:"zhangsan"},function (data) {
  alert(data);
  },"text");

3. $.post():發(fā)送post請求(ajax的簡化)

->語法:$.post(url, [data], [callback], [type])

    * url:請求路徑

    * data:請求參數(shù)

    * callback:回調(diào)函數(shù)

    * type:響應(yīng)結(jié)果的類型

代碼如下(示例):

 $.post("<%=request.getcontextpath()%>/testdemo",{name:"zhangsan"},function(data) {
  alert(data);
  },"text");

小栗子

jsp頁面:

<%--
 created by intellij idea.
 user: asus
 date: 2021/3/2
 time: 22:20
 to change this template use file | settings | file templates.
--%>
<%@ page contenttype="text/html;charset=utf-8" language="java" %>
<html>
<head>
 <title>title</title>
 <title>ajax局部刷新</title>
 <script type="text/javascript" src="<%=request.getcontextpath()%>/js/jquery-1.11.0.js"></script>
 <style type="text/css">
 input {
  width: 260px;
  height: 25px;
 }

 input:focus {//按鈕點擊后改變顏色
  background: #10a0e9;
 }


 </style>
</head>
<body style="text-align:center;">
<input type="button" value="btn1" onclick="btnfun1()">
<input type="button" value="btn2" onclick="btnfun2()">
<input type="button" value="btn3" onclick="btnfun3()">
<br>
你好?。?!我叫:
<div id="div1">
</div>
</body>

<script type="text/javascript">
 function btnfun1() {
 $.ajax({
  url: "<%=request.getcontextpath()%>/ajaxservlet",	//上傳url
  type: "post", //請求方式
  data: {"flag": "one"}, //需要上傳的數(shù)據(jù)
  datatype: "text", //設(shè)置接受到的響應(yīng)數(shù)據(jù)的格式
  success: function (data) {	//請求成功
  console.log(data);
  $("#div1").html(data);
  },
  error: function () {
  alert("出錯啦...");
  },//表示如果請求響應(yīng)出現(xiàn)錯誤,會執(zhí)行的回調(diào)函數(shù)
 });
 }

 function btnfun2() {
 $.ajax({
  url: "<%=request.getcontextpath()%>/ajaxservlet",	//上傳url
  type: "post", //請求方式
  data: {"flag": "two"}, //需要上傳的數(shù)據(jù)
  datatype: "text", //設(shè)置接受到的響應(yīng)數(shù)據(jù)的格式
  success: function (data) {	//請求成功
  console.log(data);
  $("#div1").html(data);
  },
  error: function () {
  alert("出錯啦...");
  },//表示如果請求響應(yīng)出現(xiàn)錯誤,會執(zhí)行的回調(diào)函數(shù)
 });
 }

 function btnfun3() {
 $.ajax({
  url: "<%=request.getcontextpath()%>/ajaxservlet",	//上傳url
  type: "post", //請求方式
  data: {"flag": "three"}, //需要上傳的數(shù)據(jù)
  datatype: "text", //設(shè)置接受到的響應(yīng)數(shù)據(jù)的格式
  success: function (data) {	//請求成功
  console.log(data);
  $("#div1").html(data);
  },
  error: function () {
  alert("出錯啦...");
  },//表示如果請求響應(yīng)出現(xiàn)錯誤,會執(zhí)行的回調(diào)函數(shù)
 });
 }
</script>

</html>

java代碼

package test3_2.ajax;

import javax.servlet.servletexception;
import javax.servlet.annotation.webservlet;
import javax.servlet.http.httpservlet;
import javax.servlet.http.httpservletrequest;
import javax.servlet.http.httpservletresponse;
import java.io.ioexception;

@webservlet("/ajaxservlet")
public class ajaxservlet extends httpservlet {
 protected void dopost(httpservletrequest request, httpservletresponse response) throws servletexception, ioexception {
 request.setcharacterencoding("utf-8");
 response.setcontenttype("text/html; charset=utf-8");
 response.setcharacterencoding("utf-8");
 //1、獲取ajax傳遞過來的參數(shù)信息
 string flag = request.getparameter("flag");
 system.out.println(flag);
 //2、需要返回的數(shù)據(jù)信息
 string data = " ";
 if("one".equals(flag)){//流行歌曲
  data = "張三";
 }else if("two".equals(flag)){//經(jīng)典歌曲
  data = "李四";
 }else if("three".equals(flag)){//搖滾歌曲
  data = "老王";
 }
 //3、將數(shù)據(jù)信息回寫給ajax
 response.getwriter().write(data);

 }

 protected void doget(httpservletrequest request, httpservletresponse response) throws servletexception, ioexception {
 dopost(request,response);
 }
}

截圖:

總結(jié)

到此這篇關(guān)于ajax實現(xiàn)局部刷新的文章就介紹到這了,更多相關(guān)ajax局部刷新內(nèi)容請搜索碩編程以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持碩編程!

相關(guān)文章
亚洲国产精品第一区二区,久久免费视频77,99V久久综合狠狠综合久久,国产免费久久九九免费视频