人人人妻人人人妻人人人,99精品国产综合久久久久五月天 ,欧美白人最猛性XXXXX,日韩AV无码免费播放

News新聞

業(yè)界新聞動(dòng)態(tài)、技術(shù)前沿
Who are we?

您的位置:首頁      樂道系統(tǒng)FAQ      thinkPHP實(shí)現(xiàn)的省市區(qū)三級聯(lián)動(dòng)功能示例

thinkPHP實(shí)現(xiàn)的省市區(qū)三級聯(lián)動(dòng)功能示例

標(biāo)簽: 發(fā)布日期:2017-05-05 00:00:00 237

本文實(shí)例講述了thinkPHP實(shí)現(xiàn)的省市區(qū)三級聯(lián)動(dòng)功能。分享給大家供大家參考,具體如下:

一張表實(shí)現(xiàn)省市區(qū)三級聯(lián)動(dòng)【3409條數(shù)據(jù)】

1. php代碼:

public function index(){
  $province = M('Tree')->where ( array('pid'=>1) )->select ();
  $this->assign('province',$province);
  $this->display();
}
public function getRegion(){
  $Region=M("Tree");
  $map['pid']=$_REQUEST["pid"];
  $map['type']=$_REQUEST["type"];
  $list=$Region->where($map)->select();
  echo json_encode($list);
}