2

我有一组单选按钮:

<input type="radio" id="edit-status-1" name="status" value="1" class="form-radio" />  <label class="option" for="edit-status-1">Active </label>

<input type="radio" id="edit-status-0" name="status" value="0" checked="checked" class="form-radio" />  <label class="option" for="edit-status-0">Blocked </label>

我想要一个简单的测试来确定默认检查哪一个。我可以访问该页面,但我不知道如何声明单选按钮。

提前致谢。

4

1 回答 1

0

在 Zend 框架中,当您使用 zend 表单时, form->populate($data) 完成此任务,但在纯 php 中您需要比较值:

<input type="radio" name="name1" value="0" <?php echo ($_POST['name1']==0):'checked="checked"':'' ?> />
<input type="radio" name="name1" value="1" <?php echo ($_POST['name1']==1):'checked="checked"':'' ?> />
于 2013-03-26T14:16:45.470 回答