简单的问题,我正在尝试动态填充 html 表单复选框,但是当我尝试通过在 html 中使用复选框的选中属性来执行此操作时,它无法正常工作。该复选框保持选中我是否使用checked='0' / checked='1'
,checked='true' / checked='false'
和checked='checked' / checked='unchecked'
。
虽然我通过在 php 中应用额外的检查来解决它,如下所示......
while($contact = $db->fetchByAssoc($contacts))
{
$include_checked =( $contact['include'])? " checked={$contact['include']} ": "";
$opted_checked = ($contact['opted_out'])? " checked={$contact['include']} ": "";
$html.="<tr><td>{$contact['name']} </td>
<td><input type='checkbox' {$include_checked}/> </td>
<td><input type='checkbox' {$opted_checked}/> </td>
有没有更好的解决方案呢???