gpt4 book ai didi

PHP/HTML 单选按钮在默认问题上已选中

转载 作者:行者123 更新时间:2023-11-29 13:56:49 26 4
gpt4 key购买 nike

创建基于 PHP/MySQL 的单选按钮集

默认情况下检查按钮时出现问题:它看起来像什么:

代码:

$first = TRUE;
if (mysql_num_rows($result))
{
for ($j = 0; $j < mysql_num_rows($result); $j++)
{
$currentCat = mysql_result($result, $j, 'category');
if ($first == TRUE)
{
$first = FALSE;
echo "<input type='radio' name='createCat' value='$currentCat' checked='checked' />$currentCat checked";
}
else
{
echo "<input type='radio' name='createCat' value='$currentCat' />$currentCat ";
echo "non";
}
}
echo <<<_END
<br /><input type='submit' value='Create' /> $error
</form>
_END;
}

注意第一个框没有被选中HTML 中的输出:

<input type='radio' name='createCat' value='opt1' checked='checked' />opt1  checked<input type='radio' name='createCat' value='opt2' />opt2 non<input type='radio' name='createCat' value='Accounts' />Accounts non             <br /><input type='submit' value='Create' /> 

最佳答案

将您的第一个选项更改为如下所示,并且它应该默认为选中:

echo "<input type='radio' name='createCat' value='$currentCat' checked/>$currentCat checked";

请注意,您已经

checked="checked"

删除“checked”部分将解决问题。

关于PHP/HTML 单选按钮在默认问题上已选中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15725697/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com