前言
最近復(fù)習(xí)了一下jquery的一些內(nèi)容,特此整理一下一些能用的得到的知識(shí)點(diǎn),以前才學(xué)jquery的時(shí)候壓根就沒有注意到那么多的細(xì)節(jié),另外最近一直都在整理前端的一些工作中學(xué)到的小經(jīng)驗(yàn),大概還會(huì)有十篇左右的內(nèi)容,就會(huì)慢慢開始整理后端,框架,以及數(shù)據(jù)庫(kù)的一些小知識(shí)點(diǎn)
一、 ajax是什么?
概念: asynchronous javascript and xml 異步的javascript 和 xml
1、異步和同步:客戶端和服務(wù)器端相互通信的基礎(chǔ)上
-> 客戶端必須等待服務(wù)器端的響應(yīng)。在等待的期間客戶端不能做其他操作。
->客戶端不需要等待服務(wù)器端的響應(yīng)。在服務(wù)器處理請(qǐng)求的過程中,客戶端可以進(jìn)行其他的操作
2、ajax 是一種在無(wú)需重新加載整個(gè)網(wǎng)頁(yè)的情況下,能夠更新部分網(wǎng)頁(yè)的技術(shù)。
->通過在后臺(tái)與服務(wù)器進(jìn)行少量數(shù)據(jù)交換,ajax 可以使網(wǎng)頁(yè)實(shí)現(xiàn)異步更新。這意味著可以在不重新加載整個(gè)網(wǎng)頁(yè)的情況下,對(duì)網(wǎng)頁(yè)的某部分進(jìn)行更新。
-> 傳統(tǒng)的網(wǎng)頁(yè)(不使用 ajax)如果需要更新內(nèi)容,必須重載整個(gè)網(wǎng)頁(yè)頁(yè)面。
二、實(shí)現(xiàn)方式:
1.原生的js實(shí)現(xiàn)方式(了解)
javascript代碼如下(示例):
//javascript代碼 var xmlhttp;//1.創(chuàng)建核心對(duì)象 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. 請(qǐng)求方式:get、post * get方式,請(qǐng)求參數(shù)在url后邊拼接。send方法為空參 * post方式,請(qǐng)求參數(shù)在send方法中定義 2. 請(qǐng)求的url: 3. 同步或異步請(qǐng)求:true(異步)或 false(同步) */ //將url改成你自己的地址 xmlhttp.open("get", "<%=request.getcontextpath()%>/testdemo?name=zhangsan", true); //3、將請(qǐng)求發(fā)送到服務(wù)器。 xmlhttp.send(); //4.接受并處理來(lái)自服務(wù)器的響應(yīng)結(jié)果 //獲取方式 :xmlhttp.responsetext //當(dāng)xmlhttp對(duì)象的就緒狀態(tài)改變時(shí),觸發(fā)事件onreadystatechange。 //接收服務(wù)器端的響應(yīng)(readystate=4表示請(qǐng)求已完成且響應(yīng)已就緒 status=200表示請(qǐng)求響應(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實(shí)現(xiàn)方式
代碼如下(示例):
1. $.ajax()
-> 語(yǔ)法:$.ajax({鍵值對(duì)});
代碼如下(示例):
//使用$.ajax()發(fā)送異步請(qǐng)求 $.ajax({ url:"<%=request.getcontextpath()%>/testdemo" , // 請(qǐng)求路徑 type: "post", //請(qǐng)求方式 data: {"name": "zhangsan"},//請(qǐng)求參數(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("出錯(cuò)啦..."); }, }); //java代碼和上述java代碼一樣即可
2. $.get():發(fā)送get請(qǐng)求(ajax的簡(jiǎn)化)
-> 語(yǔ)法:$.get(url, [data], [callback], [type])
* url:請(qǐng)求路徑
* data:請(qǐng)求參數(shù)
* callback:回調(diào)函數(shù)
* type:響應(yīng)結(jié)果的類型
代碼如下(示例):
$.get("<%=request.getcontextpath()%>/testdemo",{name:"zhangsan"},function (data) { alert(data); },"text");
3. $.post():發(fā)送post請(qǐng)求(ajax的簡(jiǎn)化)
->語(yǔ)法:$.post(url, [data], [callback], [type])
* url:請(qǐng)求路徑
* data:請(qǐng)求參數(shù)
* callback:回調(diào)函數(shù)
* type:響應(yīng)結(jié)果的類型
代碼如下(示例):
$.post("<%=request.getcontextpath()%>/testdemo",{name:"zhangsan"},function(data) { alert(data); },"text");
小栗子
jsp頁(yè)面:
<%-- 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 {//按鈕點(diǎn)擊后改變顏色 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", //請(qǐng)求方式 data: {"flag": "one"}, //需要上傳的數(shù)據(jù) datatype: "text", //設(shè)置接受到的響應(yīng)數(shù)據(jù)的格式 success: function (data) { //請(qǐng)求成功 console.log(data); $("#div1").html(data); }, error: function () { alert("出錯(cuò)啦..."); },//表示如果請(qǐng)求響應(yīng)出現(xiàn)錯(cuò)誤,會(huì)執(zhí)行的回調(diào)函數(shù) }); } function btnfun2() { $.ajax({ url: "<%=request.getcontextpath()%>/ajaxservlet", //上傳url type: "post", //請(qǐng)求方式 data: {"flag": "two"}, //需要上傳的數(shù)據(jù) datatype: "text", //設(shè)置接受到的響應(yīng)數(shù)據(jù)的格式 success: function (data) { //請(qǐng)求成功 console.log(data); $("#div1").html(data); }, error: function () { alert("出錯(cuò)啦..."); },//表示如果請(qǐng)求響應(yīng)出現(xiàn)錯(cuò)誤,會(huì)執(zhí)行的回調(diào)函數(shù) }); } function btnfun3() { $.ajax({ url: "<%=request.getcontextpath()%>/ajaxservlet", //上傳url type: "post", //請(qǐng)求方式 data: {"flag": "three"}, //需要上傳的數(shù)據(jù) datatype: "text", //設(shè)置接受到的響應(yīng)數(shù)據(jù)的格式 success: function (data) { //請(qǐng)求成功 console.log(data); $("#div1").html(data); }, error: function () { alert("出錯(cuò)啦..."); },//表示如果請(qǐng)求響應(yīng)出現(xiàn)錯(cuò)誤,會(huì)執(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傳遞過來(lái)的參數(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實(shí)現(xiàn)局部刷新的文章就介紹到這了,更多相關(guān)ajax局部刷新內(nèi)容請(qǐng)搜索碩編程以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持碩編程!