编程语言
首页 > 编程语言> > php – Yii框架radiobuttonlist

php – Yii框架radiobuttonlist

作者:互联网

任何人都可以了解如何在提交表单时确定选择了哪个单选按钮?

我正在使用CActiveForm :: radioButtonList?

解决方法:

您无需确定它.客户端将在POST数据中传输其值.

例如这样的代码

<?=$form->radioButtonList($person,'gender_code',array('m'=>'Male','f'=>'Female')); ?>

将形成POST [gender_code] = m或POST [gender_code] = f

标签:radiobuttonlist,php,yii
来源: https://codeday.me/bug/20190726/1538977.html