我有:
<input type="radio" id="flag" name="flag" value="0" <?php if($row['flag_active'] === 0){ echo 'checked="checked"';} ?>checked="checked" /><label for="flag">Inactive</label>
<input type="radio" id="flag1" name="flag" value="1" <?php if($row['flag_active'] === 1){ echo 'checked="checked"';} ?>checked="checked" /><label for="flag1">Active</label>
但第二个单选按钮始终被选中。我已经回显了$row['flag_active']
它,它等于 0。
另外,我试过:
if($row['flag_active'] === 0)
if($row['flag_active'] == 0)
if($row['flag_active'] = 0)
if($row['flag_active'] !== 1)
if($row['flag_active'] != 1)
提前感谢帮助。