国产精品成人VA在线观看,亚洲日韩在线中文字幕综合,亚洲AV电影天堂男人的天堂,久久人人爽人人爽人人av东京热

News新聞

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

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

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

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

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

一張表實(shí)現(xiàn)省市區(qū)三級聯(lián)動【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);
}