我有一个关于 Yii 框架的问题。
假设我有如下代码所示的下拉列表。
我需要打印选定的值,我尝试这样做,$_POST['countries']
但什么也没发生。
我只需要将所选值存储在变量中,以便我可以对其进行操作。
<?php
echo CHtml::dropDownList('countries', $select = array(),
CHtml::listData($countries, 'code', 'name'));
?>
var 对应于使用 发送的$_POST
一些数据HTTP protocol
,因此要使用此 var,客户端(浏览器)需要向服务器发送数据。
由于您想在用户在下拉列表中选择一个值后显示某些内容,因此您需要使用在客户端执行的 javascript。
这是一个使用 jquery 获取选定值的示例。然后,您应该更新希望值出现的 div,但由于它不在您的问题中,我无能为力!
$('#dropDownId').change(function(){
var value = $('#dropDownId :selected').text();
//Here update the div where you need to see the selected value
});
dropDownId
您需要提供给 dropDownList 的 id在哪里(在CHtml::dropDownList html 选项中)
您还可以使用 Ajax 请求。如果您想制作一些相关的下拉列表,那就更好了。例如:
echo $form->dropDownList($profile, $field->varname,CHtml::listData(Countries::model()->findAll(),'short','title'), array(
'class'=>"chzn-select",
'empty'=>"Select country",
'ajax' => array(
'type' => 'POST',
'url'=>$this->createUrl('registration/state'),
'update' => '#Profile_state',
'data'=>array('country'=>'js:this.value',),
'success'=> 'function(data) {
$("#Profile_state").empty();
$("#Profile_state").append(data);
$("#Profile_state").trigger("liszt:updated");
} ',
)));
然后在您的控制器中,您可以使用 POST 示例:
public function actionState()
{
$data=Regions::model()->findAll('country_code=:country_code',
array(':country_code'=> $_POST['country']));
echo "<option value=''>Select state</option>";
$data=CHtml::listData($data,'region_code','region_title');
foreach($data as $value=>$state) {
echo CHtml::tag
('option', array('value'=>$value),CHtml::encode($state),true);
}
}