主頁(yè) > 知識(shí)庫(kù) > Ajax+PHP實(shí)現(xiàn)的分類(lèi)列表框功能示例

Ajax+PHP實(shí)現(xiàn)的分類(lèi)列表框功能示例

熱門(mén)標(biāo)簽:芒果電銷(xiāo)機(jī)器人 電梯外呼線(xiàn)路板維修視頻 銀川ai電話(huà)機(jī)器人 臨沂智能電銷(xiāo)機(jī)器人軟件 安陽(yáng)自動(dòng)外呼系統(tǒng)價(jià)格是多少 上海公司外呼系統(tǒng)線(xiàn)路 地圖標(biāo)注風(fēng)向標(biāo) 十堰ai電話(huà)機(jī)器人效果怎么樣 浙江外呼電話(huà)系統(tǒng)軟件

本文實(shí)例講述了Ajax+PHP實(shí)現(xiàn)的分類(lèi)列表框功能。分享給大家供大家參考,具體如下:

一 代碼

conn.php:

?php
  $conn = mysql_connect("localhost", "root", "root") or die("連接數(shù)據(jù)庫(kù)服務(wù)器失?。?.mysql_error()); //連接MySQL服務(wù)器
  mysql_select_db("db_database27",$conn); //選擇數(shù)據(jù)庫(kù)db_database27
  mysql_query("set names utf8"); //設(shè)置數(shù)據(jù)庫(kù)編碼格式utf8
?>

index.php:

!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
html xmlns="http://www.w3.org/1999/xhtml">
head>
meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
title>添加商品信息/title>
/head>
body>
script language="javascript" src="index.js">/script>
form name="form" method="post" action="">
 table width="419" border="0" align="center" cellspacing="1" bgcolor="#9999CC">
  tr>
   td height="36" colspan="3" bgcolor="#FFFFFF">font color="#0066CC" size="+2">添加商品/font>/td>
  /tr>
  tr>
   td width="122" height="26" bgcolor="#FFFFFF" align="right">商品名稱(chēng):/td>
   td height="26" colspan="2" bgcolor="#FFFFFF">input type="text" name="name" />/td>
  /tr>
  tr>
   td height="26" bgcolor="#FFFFFF" align="right">商品類(lèi)別:/td>
   td width="64" height="26" bgcolor="#FFFFFF">select name="ptype" id="ptype" onchange="changetype(this.value)">
  ?php
   include_once("conn/conn.php");//包含數(shù)據(jù)庫(kù)連接文件
 $sql=mysql_query("select * from tb_commotype group by ptype");//按大類(lèi)分組查詢(xún)
 while($row=mysql_fetch_array($sql)){//循環(huán)輸出下拉列表框選項(xiàng)
  echo "option value='".$row['ptype']."'>".$row['ptype']."/option>";
 }
 ?>
   /select>/td>
   td width="219" height="26" bgcolor="#FFFFFF" id="showtype" name="showtype">/td>
  /tr>
  tr>
   td height="26" bgcolor="#FFFFFF" align="right">商品價(jià)格:/td>
   td height="26" colspan="2" bgcolor="#FFFFFF">input type="text" name="price" />/td>
  /tr>
  tr>
   td height="26" bgcolor="#FFFFFF">nbsp;/td>
   td height="26" colspan="2" bgcolor="#FFFFFF">input type="submit" name="Submit" value="提交" />/td>
  /tr>
 /table>
/form>
script language="javascript">
  changetype(document.getElementById("ptype").value);//頁(yè)面載入即執(zhí)行函數(shù),顯示子類(lèi)內(nèi)容
/script>
/body>
/html>

type.php:

?php
  include_once("conn/conn.php");//包含數(shù)據(jù)庫(kù)連接文件
 //echo $_GET['ptype'];
 //$ptype=iconv("gb2312","utf-8",$_GET['ptype']);//把參數(shù)值做編碼轉(zhuǎn)換
 $sql=mysql_query("select stype from tb_commotype where ptype='".$_GET['ptype']."'");//查詢(xún)子類(lèi)內(nèi)容
 echo "select name='stype' id='stype'>";//輸出html
 while($row=mysql_fetch_array($sql)){//循環(huán)輸出列表框選項(xiàng)中子類(lèi)內(nèi)容
  echo "option value='".$row['stype']."'>".$row['stype']."/option>";
 }
 echo "/select>";//輸出html
?>

index.js:

function changetype(v){
 var xml;
 if(window.ActiveXObject){//如果是瀏覽器支持ActiveXObjext則創(chuàng)建ActiveXObject對(duì)象
  xml=new ActiveXObject('Microsoft.XMLHTTP');
 }else if(window.XMLHttpRequest){//如果瀏覽器支持XMLHttpRequest對(duì)象則創(chuàng)建XMLHttpRequest對(duì)象
  xml=new XMLHttpRequest();
 }
  xml.open("GET","type.php?ptype="+v,true);//使用GET方法調(diào)用type.php并傳遞參數(shù)的值
  xml.onreadystatechange=function(){//當(dāng)服務(wù)器準(zhǔn)備就緒執(zhí)行回調(diào)函數(shù)
   if(xml.readyState==4  xml.status==200){//如果服務(wù)器已經(jīng)傳回信息并未發(fā)生錯(cuò)誤
    var msg=xml.responseText;//把服務(wù)器傳回的值賦給變量msg
 //document.getElementById("showtype").innerHTML=msg;
 alert(msg);
   showtype.innerHTML=msg;//把傳回的值顯示在id=showtype的元素中
   }
  }
  xml.send(null);//不發(fā)送任何數(shù)據(jù),因?yàn)閿?shù)據(jù)已經(jīng)使用請(qǐng)求URL通過(guò)GET方法發(fā)送
}

二 運(yùn)行結(jié)果

更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專(zhuān)題:《PHP+ajax技巧與應(yīng)用小結(jié)》、《PHP網(wǎng)絡(luò)編程技巧總結(jié)》、《PHP基本語(yǔ)法入門(mén)教程》、《php面向?qū)ο蟪绦蛟O(shè)計(jì)入門(mén)教程》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫(kù)操作入門(mén)教程》及《php常見(jiàn)數(shù)據(jù)庫(kù)操作技巧匯總》

希望本文所述對(duì)大家PHP程序設(shè)計(jì)有所幫助。

您可能感興趣的文章:
  • PHP+Ajax檢測(cè)用戶(hù)名或郵件注冊(cè)時(shí)是否已經(jīng)存在實(shí)例教程
  • PHP+AJAX實(shí)現(xiàn)無(wú)刷新注冊(cè)(帶用戶(hù)名實(shí)時(shí)檢測(cè))
  • php注冊(cè)系統(tǒng)和使用Xajax即時(shí)驗(yàn)證用戶(hù)名是否被占用
  • PHP+Ajax異步通訊實(shí)現(xiàn)用戶(hù)名郵箱驗(yàn)證是否已注冊(cè)( 2種方法實(shí)現(xiàn))
  • jQuery ajax+PHP實(shí)現(xiàn)的級(jí)聯(lián)下拉列表框功能示例
  • Ajax+PHP實(shí)現(xiàn)的刪除數(shù)據(jù)功能示例
  • Ajax+PHP實(shí)現(xiàn)的模擬進(jìn)度條功能示例
  • PHP+Ajax實(shí)現(xiàn)的檢測(cè)用戶(hù)名功能簡(jiǎn)單示例

標(biāo)簽:寧夏 荊門(mén) 常州 遂寧 遵義 吐魯番 武威 徐州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Ajax+PHP實(shí)現(xiàn)的分類(lèi)列表框功能示例》,本文關(guān)鍵詞  Ajax+PHP,實(shí)現(xiàn),的,分類(lèi),列表,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Ajax+PHP實(shí)現(xiàn)的分類(lèi)列表框功能示例》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于Ajax+PHP實(shí)現(xiàn)的分類(lèi)列表框功能示例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章