gpt4 book ai didi

php - 单选按钮无法选择

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

我的问题是我无法选择单选按钮。我正在使用 php mysql 并在 while 循环中为 mysql_fetch_array 函数创建单选按钮。这是代码:

<div class="alert alert-info">
<label id="dataFlow">
<?php if($detailPage == TRUE && $detailType == "poll"){ ?>
<!-- survey part -->
<h3><?php echo $pollData['pollContent']; ?></h3>
<form id="pollForm" method="post" action="">
<p>
<?php while($pollAnswerData = $pollAnswerDataSql->fetch_assoc()) {
echo '<input type="radio" id="' . $pollAnswerData['pollquestionId'] . '" name="pollAnswer" />' . $pollAnswerData['pollquestionContent'] . '<br/>';
} ?>
</p>
<input type="submit" name="submitButton" id="submitButton" value="Gönder"/>
</form>
<?php } else if($detailPage == TRUE && $detailType == "post") { ?>
<h4><?php echo $postData['postContent']; ?></h4>
<?php } else {
listFlowData();
} ?>
</label>
</div>

这里有什么问题吗?

最佳答案

输入元素(单选或复选框)未被选中,而是被选中。要在浏览器中显示处于选中状态的元素,您必须向该元素添加一个 bool 值“checked”属性。

<input type="radio" checked="checked" id="..." name="..." value="..."/>

请注意,浏览器仅将选中元素的值发送到服务器端脚本。要识别未选中的元素,您必须使用内部列表。

对于单选输入,这意味着仅当用户单击其中一个元素(或使用属性检查)时,命名参数才会存在于表单请求中。

关于php - 单选按钮无法选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19902534/

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