表单未提交或按钮提交不起作用

时间:2016-01-26 20:09:21

标签: javascript php jquery forms

据我所知,这段代码必须有效,但是当我编码它时,它不起作用 问题是表单没有提交。我怎么解决这个问题?
检查后,我甚至没有得到复选框的值。

# get 100 random points
pts <- list(a,b,c)
points <- sample(pts, 100, replace=TRUE)

# all half-way points in the path
hws <- Reduce(function(x,y) (x+y)/2, points, init=c(0,0), accumulate=TRUE)

# plot
plot(do.call(rbind, pts))
lines(do.call(rbind, hws))

在Controller中,结构就像这样

<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>

1 个答案:

答案 0 :(得分:1)

如果您发出所有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放在tablebutton 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>
相关问题