php – 默认选中复选框html

前端之家收集整理的这篇文章主要介绍了php – 默认选中复选框html前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图默认选中一个复选框,但我尝试的所有内容似乎都不起作用.我不知道它是否与代码中的 PHP有关.
function show_subscription_checkBox ($id='0') {
    global $sg_subscribe;
    sg_subscribe_start();

    if ( $sg_subscribe->checkBox_shown ) return $id;
    if ( !$email = $sg_subscribe->current_viewer_subscription_status() ) :
        $checked_status = ( !empty($_COOKIE['subscribe_checkBox_'.COOKIEHASH]) && 'checked' == $_COOKIE['subscribe_checkBox_'.COOKIEHASH] ) ? true : false;
    ?>   
<p <?PHP if ($sg_subscribe->clear_both) echo 'style="clear: both;" '; ?>class="subscribe-to-comments">
        <input type="checkBox" name="subscribe" id="subscribe" value="subscribe" style="width: auto;" <?PHP if ( $checked_status ) echo 'checked="checked" '; ?>/>

        <label for="subscribe"><?PHP echo $sg_subscribe->not_subscribed_text; ?></label>
        </p>

这是一个wordpress插件,允许您订阅博客评论.

我试过了

echo 'checked=\"checked\" ';
echo 'checked="checked" ' ;
echo 'checked> ';

插件作者声明您曾经能够默认选中复选框但不再查看.

由于这是在谷歌出现“默认选中复选框”,我想我会回答它. Alpay是对的:默认情况下确保选中复选框的正确方法是这样的(后跟一个未检查的示例):
<input type="checkBox" name="vehicle" value="Car" checked> I have a car    
<input type="checkBox" name="vehicle" value="Bike"> I have a bike

答案是在w3schools上找到的.原始问题的作者在使用他的PHP代码时遇到了问题,这与问题标题完全没有关系.

原文链接:https://www.f2er.com/php/136945.html

猜你在找的PHP相关文章