如何在数据来自数据库时仅选择一个复选框

时间:2014-11-19 09:18:47

标签: javascript php html

我想允许用户只选择一个复选框。

$jsqla = mysql_query("select * from products where id='$product_id'") or die(mysql_error());
$jfeta = mysql_fetch_assoc($jsqla);

$formats = explode(";", $jfeta['formats']);

<div class="">
    <?php foreach($formats as $v){ ?>
        <label style="line-height: 1.25em;display: block;width: 100px;margin-right: 10px;float: left;">                         
            <div class="fomat_buttons" style="border: 1px solid;border-radius: 9px;text-align: center;padding-top: 10px;padding-bottom:10px;padding-left: 3px;padding-right: 3px;border-color: #cccccc;font-family: 'SSemibold'; font-size: 13px; color: #44b7da;">                             
            <input class="format_cheks" type="checkbox" value="<?php echo $v; ?>" style="visibility:hidden;"/>              
                <span style="margin:-17px auto auto 0px;display:block;"><?php echo $v; ?></span>                            
            </div>                      
        </label>
    <?php } ?>

</div>

1 个答案:

答案 0 :(得分:2)

  

我想允许用户只选择一个复选框

听起来你想要一个单选按钮组,而不是复选框。

<input class="format_cheks" type="radio" name="format_cheks" value="<?php echo $v; ?>" style="visibility:hidden;"/>
<!-- Changes here ---------------^^^^^^^^^^^^^^^^^^^^^^^^^^^                     -->

当用户检查其中一个时,浏览器将自动取消选择任何其他name="format_cheks"单选按钮。提交表单后,只会发送一个 format_cheks字段,并带有已检查单选按钮的值(如果有)。

<div><label><input type="radio" name="foo" value="1"> One</label></div>
<div><label><input type="radio" name="foo" value="2"> Two</label></div>
<div><label><input type="radio" name="foo" value="3"> Three</label></div>