ajax實(shí)現(xiàn)從后臺(tái)拿數(shù)據(jù)顯示在HTML前端的方法
html頁(yè)面,ajax是基于id的,所有用id表示。
拿到的數(shù)據(jù)會(huì)顯示在這里
<div id="test"></div>
ajax源碼:
$(document).ready(function() { $.ajax({ url : "admin/get_online_ganbu.php",//后臺(tái)請(qǐng)求的數(shù)據(jù),用的是php datatype : "json",//數(shù)據(jù)格式 type : "post",//請(qǐng)求方式 async : false,//是否異步請(qǐng)求 success : function(data) { //如果請(qǐng)求成功,返回?cái)?shù)據(jù)。 var html = ""; for(var i=0;i<data.length;i++){ //遍歷data數(shù)組 var ls = data[i]; html +="測(cè)試:"+ls.name+""; } $("#test").html(html); //在html頁(yè)面id=test的標(biāo)簽里顯示html內(nèi)容 }, }) })
php源碼:
<?php include "conn.php";//這是鏈接數(shù)據(jù)的。 $result = mysql_query("select * from online where class =1 "); $dataarr = array(); while($row = mysql_fetch_array($result)){ array_push($dataarr, $row); } mysql_close($con); echo json_encode($dataarr); ?>
以上這篇ajax實(shí)現(xiàn)從后臺(tái)拿數(shù)據(jù)顯示在html前端的方法就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持碩編程。