表单不提交或按钮提交不起作用 - javascript

据我所知,此代码必须有效,但是我编码时却无效
问题在于该表单未提交。我该如何解决?
选中时,我什至没有得到复选框的值。

<table id="example" class="display" cellspacing="0" width="100%">
<thead>
    <th>ID</th>
    <th>Item Photo</th>
    <th>Item Name</th>
    <th>Stocks</th>
    <th>Date Posted</th>
    <th>Price</th>
    <th>Actions</th>
</thead>
<tbody>

<form action ="<?php echo base_url()?>Shop/test" method="POST">
    <?php
    $x=1;

    foreach($shop_items as $key)
    {
    ?>

    <tr>
        <td><input class="checkbox"  type="checkbox" name="cb[]" value="<?php $key->shop_item_id?>"> <?php echo $x;?> </td>
        <td><center><img src="<?php echo base_url()?>uploads/items_main/<?php echo $key->shop_item_main_pic;?>"  style = "width:60px;height:50px;"alt=""></center></td>
        <td><?php echo mb_strimwidth($key->shop_item_name, 0, 18,"...");?></td>
        <td style="width:10px;"><center><button><span class="fa fa-eye"></span></button></center></td>
        <td><?php echo date('F,d,Y',strtotime($key->shop_item_date_posted))?></td>
        <td><?php if(!$key->shop_item_sale){ echo number_format($key->shop_item_orig_price);}
        else{ echo "<font color='red'>".number_format(intval($key->shop_item_orig_price-($key->shop_item_orig_price*($key->shop_item_sale/100))))."</font> ";}?></td>
        <td>
            <a href="">Bid </a> | <a href=""> View</a>
        </td>
    </tr>
    <?php
        $x+=1; 
    }
    ?>
<button class='btn btn-danger btn-xs' type="submit" name="delete" value="delete"><span class="fa fa-times"></span> delete</button>

</form>
</tbody>

在Controller中,结构是这样的

if(isset($_POST['delete']))
{
  if (isset($_POST["cb"])) {
     // Checkbox is checked.
  $cb = $_POST["cb"];
  echo $cb;
} 
else {
     $cb = $_POST["cb"];
     echo $cb;
}
        }

参考方案

如果发出所有PHP,将留下错误的HTML:

    <table id="example" class="display" cellspacing="0" width="100%">
        <thead>
            <th>ID</th>
        </thead>
        <tbody>
            <form action="<?php echo base_url() ?>Shop/test" method="POST">
                <tr>
                    <td>
                        <input class="checkbox" type="checkbox" name="cb[]" value="<?php $key->shop_item_id ?>"> <?php echo $x; ?>
                    </td>
                </tr>
                <button class='btn btn-danger btn-xs' type="submit" name="delete" value="delete">
                    <span class="fa fa-times"></span> delete
                </button>
            </form>
        </tbody>
    </table>

form不能是tbody的子级。 table中的任何内容都应位于thtd标记内。您应该将form放在table之外,并且将button放在td标记内:

   <form action="<?php echo base_url() ?>Shop/test" method="POST">
        <table id="example" class="display" cellspacing="0" width="100%">
            <thead>
                <th>ID</th>
            </thead>
            <tbody>
                <tr>
                    <td>
                        <input class="checkbox" type="checkbox" name="cb[]" value="<?php $key->shop_item_id ?>"> <?php echo $x; ?>
                    </td>
                </tr>
                <tr>
                    <td>
                        <button class='btn btn-danger btn-xs' type="submit" name="delete" value="delete">
                            <span class="fa fa-times"></span> delete
                        </button>
                    </td>
                </tr>
            </tbody>
        </table>
    </form>

PHP stringID无法从回显中读入onclick - javascript

我有一个音频播放器,可以在HTML中正常工作,但是当我从PHP回显调用时,似乎没有得到div ID的名称,因此它无法播放我的音频。这是我的代码:// Show audio if ($sObj->get('audio') != null) { $sAudio = $sObj->get('audio'); $a…

Telerik单选按钮所需的字段验证器 - javascript

如何设置Telerik单选按钮所需的字段验证器?我想在按钮单击“ BtnSave”上设置必填字段验证器吗?请帮忙!<telerik:RadButton ID="radio_male" runat="server" ToggleType="Radio" AutoPostBack="fa…

Div单击与单选按钮相同吗? - php

有没有一种方法可以使div上的click事件与表单环境中的单选按钮相同?我只希望下面的div提交值,单选按钮很丑代码输出如下:<input id="radio-2011-06-08" value="2011-06-08" type="radio" name="radio_date&#…

在PHP文件中调用javascript函数并在加载HTML文件之后? - javascript

我需要在我的php中调用js函数,但无法正常工作。有人可以告诉我我在做什么错吗?我该如何轻松地做到这一点?谢谢!我有三个文件:  mail.php负责发送$ _POST的内容(工作正常)。我调用我的javascript函数来切换模式,具体取决于邮件是否已发送。 <? ... $response = $sendgrid->send($email);…

PHP-复选框组 - php

我有一个需要发布的表单复选框组。<input type="checkbox" value="true" checked name="chk0[]"> <input type="checkbox" value="false" name=…