時間:2023-05-24 09:00:01 | 來源:網(wǎng)站運營
時間:2023-05-24 09:00:01 來源:網(wǎng)站運營
【達(dá)達(dá)前端】Ajax實戰(zhàn)項目源碼講解(快速入門的實例)Github源碼:<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title></head><body><form> 用戶名:<input type="text"> <input type="submit" value="注冊"></form></body></html>
header("Content-type:text/html;charset=utf-8");
$con = mysql_connect();
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title></head><body><form action="reg.php"> 用戶名:<input type="text" name="username"> <input type="submit" value="注冊"></form></body></html>
2
$_GET$_POST
select * from 表 where 字段 = 值mysql_querymysql_num_rows
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title></head><body><form action="reg.php" method="post"> 用戶名:<input type="text" name="username"> <input type="submit" value="注冊"></form></body></html>
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title></head><body><form action="reg.php" method="post"> 用戶名:<input type="text" name="username"> <input type="submit" value="注冊"></form></body></html>
<?php// 定義編碼格式header("Content-type:text/html;charset=utf-8");// 連接mysql$con = mysql_connect("localhost",'root','123456');mysql_select_db('ajaxitem');mysql_query('set names utf8');$username = $_POST['username'];$sql = "select * from reg where username = '$username'";$query = mysql_query($sql);// 如何區(qū)分查詢到還是沒有查詢到呢?//mysql_num_rows($query);// 找到為1,沒有找到為0if($query && mysql_num_rows($query)){ echo "<script>alert('已經(jīng)有人注冊過了')</script>"; echo "<script>history.back()</script>";}else {$sql = "insert into reg(username) values ('$username')";$sql = mysql_query($sql);if($query){ echo "<script>alert('注冊成功')</script>"; echo "<script>window.location = 'index.html'</script>";}}?>
: 3
select * from 表 where 字段 = 值mysql_querymysql_num_rowssql添加insert into 表(字段)values(值)
XMLHttpRequestopenonreadystatechangereadyState0未初始化1初始化2發(fā)送數(shù)據(jù)3數(shù)據(jù)傳送中4完成send
onreadystatechangestatushttp狀態(tài)碼200301304403404500statusText
responseText responseXML JSON.parsePOST方式:需要設(shè)置頭信息位置在send前setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');setRequestHeader(‘Content-Type’, ‘a(chǎn)pplication/json’);JSON_stringify
JQuery中的Ajax$.ajaxurltypedatasuccesserrordataTypeasync
require_once()獲取數(shù)據(jù)mysql_fetch_rowmysql_fetch_assocmysql_fetch_arraymysql_fetch_object增刪改查delete from 表 where 字段 = 值update 表 set 字段 = 新值 where id = $id;
Functions to create xhrsfunction createStandardXHR() { try { return new window.XMLHttpRequest(); }catch(e){}}function createActiveXHR() { try { return new window.ActiveXObject("Microsoft.XMLHTTP"); }catch(e){}}
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title></head><body><form action="reg.php" method="post"> 用戶名:<input type="text" name="username"> <input type="submit" value="注冊"></form><div id="div"></div><script>var oInput = document.getElementById("input1");var oDiv = document.getElementById('div1');oInput.onblur = function () { var xhr = new XMLHttpRequest(); xhr.open('POST','user.php',true);}</script></body></html>
<?php// 定義編碼格式header("Content-type:text/html;charset=utf-8");// 連接mysql$con = mysql_connect("localhost",'root','123456');mysql_select_db('ajaxitem');mysql_query('set names utf8');$username = $_GET['username'];$sql = "select * from reg where username = '$username'";$query = mysql_query($sql);if($sql && mysql_num_rows($query)){ echo '{"code":0, "message": "已經(jīng)有人注冊過啦" }';}else { echo '{"code":1,"message":"可以注冊"}';}?>
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title></head><body><form action="reg.php" method="post"> 用戶名:<input type="text" name="username"> <input type="submit" value="注冊"></form><div id="div"></div><script>var oInput = document.getElementById("input1");var oDiv = document.getElementById('div1');oInput.onblur = function () { var xhr = new XMLHttpRequest(); // xhr.open('POST','user.php?username='+encodeURIComponent(this.value),true); xhr.open('POST','user.php',true); // 監(jiān)聽整個流程,多次觸發(fā) xhr.onreadystatechange = function () { if(xhr.readyState == 4) { if(xhr.status == 200) { xhr.responseText; // xhr.responseXML // console.log(JSON.parse(xhr.responseText)); var obj = JSON.parse(xhr.responseText); if(obj.code) { oDiv.innerHTML = obj.message }else { oDiv.innerHTML = obj.message } } } }; // xhr.send(null); xhr.send('username'+encodeURIComponent(this.value));}</script></body></html>
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title></head><body><form action="reg.php" method="post"> 用戶名:<input type="text" name="username"> <input type="submit" value="注冊"></form><div id="div"></div><script>var oInput = document.getElementById("input1");var oDiv = document.getElementById('div1');oInput.onblur = function () { var xhr = new XMLHttpRequest(); // xhr.open('POST','user.php?username='+encodeURIComponent(this.value),true); xhr.open('POST','user.php',true); // 監(jiān)聽整個流程,多次觸發(fā) xhr.onreadystatechange = function () { if(xhr.readyState == 4) { if(xhr.status == 200) { xhr.responseText; // xhr.responseXML // console.log(JSON.parse(xhr.responseText)); var obj = JSON.parse(xhr.responseText); if(obj.code) { oDiv.innerHTML = obj.message }else { oDiv.innerHTML = obj.message } } } }; // xhr.send(null); // xhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded'); // xhr.send('username'+encodeURIComponent(this.value)); // 'username=dada&age=12' // xhr.setRequestHeader('Content-Type','application/json'); // xhr.send('{ "username": dada, "age": 12}'); // xhr.send(JSON.stringify({"username":"dada","age":12})); // {"username":"dada","age":12} -> $.param() -> "useranme=dada&age=12"}</script></body></html>
if(s.data && s.processData && typeof s.data !== "string"){ s.data = JQuery.param(s.data, s.traditional);}inspectPrefiltersOrTransports(prefilters, s, options, jqXHR);if(state === 2){return jqXHR;}
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title></head><body>$.ajax({ url: 'jquery.php', type: 'GET', data: {username: "dada"}, success: function(data){ console.log(data); }});</body></html>
<?PHP //echo 'red'; echo '{"color":"red","width":"200px"}';?>
require_once(‘connect.php');
<!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>無標(biāo)題文檔</title><script>//get : http://localhost/reg.php?username=dada//post : http://localhost/reg.php</script></head><body><form action="reg.php" method="post"> 用戶名 : <input type="text" name="username"> <!--username=dada--> <input type="submit" value="注冊"></form></body></html>
<!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>無標(biāo)題文檔</title></head><body><form action="reg.php" method="post"> 用戶名 : <input id="input1" type="text" name="username"> <!--username=dada--> <input type="submit" value="注冊"></form><div id="div1"></div><script>var oInput = document.getElementById('input1');var oDiv = document.getElementById('div1');oInput.onblur = function(){ var xhr = new XMLHttpRequest(); xhr.open('GET','user.php?username='+encodeURIComponent(this.value),true); xhr.onreadystatechange = function(){ if(xhr.readyState == 4){ //console.log(xhr.status); //console.log(xhr.statusText); if(xhr.status == 200){ //console.log(xhr.responseText); //console.log(JSON.parse(xhr.responseText)); var obj = JSON.parse(xhr.responseText); if(obj.code){ oDiv.innerHTML = obj.message; } else{ oDiv.innerHTML = obj.message; } } } }; xhr.send(null);};</script></body></html>
<!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>無標(biāo)題文檔</title></head><body><form action="reg.php" method="post"> 用戶名 : <input id="input1" type="text" name="username"> <!--username=dada--> <input type="submit" value="注冊"></form><div id="div1"></div><script>var oInput = document.getElementById('input1');var oDiv = document.getElementById('div1');oInput.onblur = function(){ var xhr = new XMLHttpRequest(); xhr.open('POST','user.php',true); xhr.onreadystatechange = function(){ if(xhr.readyState == 4){ //console.log(xhr.status); //console.log(xhr.statusText); if(xhr.status == 200){ //console.log(xhr.responseText); //console.log(JSON.parse(xhr.responseText)); var obj = JSON.parse(xhr.responseText); if(obj.code){ oDiv.innerHTML = obj.message; } else{ oDiv.innerHTML = obj.message; } } } }; //xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); //xhr.send('username='+encodeURIComponent(this.value)); //'username=dada&age=12' //xhr.setRequestHeader('Content-Type', 'application/json'); //xhr.send('{"username":"dada","age":12}'); //xhr.send(JSON.stringify({"username":"dada","age":12})); //{"username":"dada","age":12} -> $.param() -> 'username=dada&age=12' };</script></body></html>
<!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>無標(biāo)題文檔</title><script src="jquery-2.1.3.min.js"></script><script>$.ajax({ url : 'jquery.php', type : 'POST', data : {username:"dada"}, dataType : 'json', async : false, success : function(data){ //xhr.responseText console.log(data); //var obj = JSON.parse(data); //console.log(obj); }, error : function(err){ console.log(err.status); console.log(err.statusText); }});console.log(123);</script></head><body></body></html>
<!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>無標(biāo)題文檔</title><script src="jquery-2.1.3.min.js"></script><script>$.ajax({ url : 'data.php', type : 'POST', data : {username:"dada"}, dataType : 'json', async : false, success : function(data){ //xhr.responseText console.log(data); //var obj = JSON.parse(data); //console.log(obj); }, error : function(err){ console.log(err.status); console.log(err.statusText); }});console.log(123);</script></head><body></body></html>
<?PHP header("Content-type: text/html; charset=utf-8"); $con = mysql_connect('localhost','root',''); mysql_select_db('ajaxitem'); mysql_query('set names utf8');?
<?PHP require_once('connect.php'); //$sql = "delete from reg where username = 'da1'"; //$query = mysql_query($sql); $sql = "update reg set username = 'da1' where id = 4"; $query = mysql_query($sql); $sql = "select * from reg limit 2"; $query = mysql_query($sql); //print_r($query); //print_r(mysql_num_rows($query)); //$row = mysql_fetch_row($query); //print_r($row); /*while($row = mysql_fetch_row($query)){ //數(shù)組下標(biāo)的方式輸入 print_r($row); }*/ /*while($row = mysql_fetch_assoc($query)){ //數(shù)組鍵值的方式輸入 print_r($row); }*/ /*while($row = mysql_fetch_array($query)){ //數(shù)組整體的方式輸入 print_r($row); }*/ /*while($row = mysql_fetch_object($query)){ //對象鍵值的方式輸入 print_r($row); }*/ /*while($row = mysql_fetch_assoc($query)){ //數(shù)組鍵值的方式輸入 print_r($row['username']); }*/ /*while($row = mysql_fetch_object($query)){ //對象鍵值的方式輸入 print_r($row -> username); }*/ while($row = mysql_fetch_assoc($query)){ //數(shù)組鍵值的方式輸入 $data[] = $row; } //print_r(json_encode($data)); echo json_encode($data); ?>
<?PHP require_once('connect.php'); $username = $_REQUEST['username']; $sql = "select * from reg where username = '$username'"; $query = mysql_query($sql); if($query && mysql_num_rows($query)){ echo '{"code":0 , "message" : "已經(jīng)有人注冊過啦"}'; } else{ echo '{"code":1 , "message" : "可以注冊"}'; }?>
<?PHP //echo 'red'; echo '{"color":"red","width":"200px"}';?>
<?PHP //username -> hello require_once('connect.php'); $username = $_POST['username']; $sql = "select * from reg where username = '$username'"; $query = mysql_query($sql); if($query && mysql_num_rows($query)){ echo "<script>alert('已經(jīng)有人注冊過啦')</script>"; echo "<script>history.back()</script>"; } else{ $sql = "insert into reg(username) values('$username')"; $query = mysql_query($sql); if($query){ echo "<script>alert('注冊成功')</script>"; echo "<script>window.location = 'index.html'</script>"; } }?>
【作者】:Jeskson
【原創(chuàng)公眾號】:達(dá)達(dá)前端小酒館。
【福利】:公眾號回復(fù) “資料” 送自學(xué)資料大禮包(進(jìn)群分享,想要啥就說哈,看我有沒有)!
【轉(zhuǎn)載說明】:轉(zhuǎn)載請說明出處,謝謝合作!~
關(guān)鍵詞:入門,實例,講解,實戰(zhàn),項目
微信公眾號
版權(quán)所有? 億企邦 1997-2025 保留一切法律許可權(quán)利。