当前位置: 移动技术网 > IT编程>开发语言>PHP > Yii2实现上下联动下拉框功能的方法

Yii2实现上下联动下拉框功能的方法

2017年12月12日  | 移动技术网IT编程  | 我要评论

木瓜图片,ca4123,星期六约会

本文实例讲述了yii2实现上下联动下拉框功能的方法。分享给大家供大家参考,具体如下:

首先我先解释下什么是上下联动的下拉框

假如一个view里面有两个select,第一个是公司名,第二个是分公司名。公司有多个,每个公司又有多个分公司,我们实现的就是点击当前公司后,分公司里面显示的事当前公司的分公司。

或者你直接理解成选择所属省份后,下面的select显示的是当前省份的县。

原理:

点击第一个select后,执行ajax获取当前公司的分公司,并使用jquery修改分公司内容

两个select的部分视图代码如下:

<?= $form->field($model, 'companies_company_id')->dropdownlist(
  \yii\helpers\arrayhelper::map(\backend\models\companies::find()->all(),'company_id','company_name'),
  [
    'prompt'=>'select company',
    'onchange'=>'
      $.post("index.php?r=branches/lists&id='.'"+$(this).val(),function(data){
        $("select#departments-branches_branch_id").html(data);
      });',
  ]
) ?>
<?= $form->field($model, 'branches_branch_id')->dropdownlist(
  \yii\helpers\arrayhelper::map(\backend\models\branches::find()->all(),'branch_id','branch_name'),
  [
    'prompt'=>'select branches',
  ]
) ?>

list方法代码:

public function actionlists($id)
{
  $countbranches = branches::find()
    ->where(['companies_company_id' => $id])
    ->count();
  $branches = branches::find()
    ->where(['companies_company_id' => $id])
    ->all();
  if ($countbranches > 0) {
    foreach ($branches as $branche) {
      echo "<option value='" . $branche->branch_id . "'>" . $branche->branch_name . "</option>";
    }
  } else {
    echo "<option>-</option>";
  }
}

更多关于yii相关内容感兴趣的读者可查看本站专题:《yii框架入门及常用技巧总结》、《php优秀开发框架总结》、《smarty模板入门基础教程》、《php面向对象程序设计入门教程》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总

希望本文所述对大家基于yii框架的php程序设计有所帮助。

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网