Home  >  Q&A  >  body text

php - 選取刪除與ajax?

先附上我的程式碼

<button class="box" data-removetype="select_del">刪除</button>
<form id="selectid">
<? while ($row = mysql_fetch_array($s))
{
       <input type="checkbox" name="id[]" value="<? echo $row['mail_id'];?>">
 }
 ?>
 </form>
 
 $(".box").click(function(e){
    var removetype = e.currentTarget.dataset.removetype;
    /*mailbox*/
    if (removetype=='select_del')
    {
        $.ajax({
                type: "POST",
                url:"del?to="+removetype,
                data:$("#selectid").serialize(),
                cache: false,
                success: function(){
                
                }
            });
    }
});

del

$user = $_GET['to'];
if ($user=='select_del')
{
    $getid=$_POST['id'];
    foreach($getid as $value)
    {
        $DEL = mysql_query("
        DELETE FROM `資料表名稱`
        WHERE `id` = '".$value."'
        ");
     }
}

以上是我的程式碼...
但卻無法運作
所以我想問看看這樣做法是不是對的?
確定id與資料表名稱無誤

巴扎黑巴扎黑2770 days ago336

reply all(1)I'll reply

  • ringa_lee

    ringa_lee2017-04-11 10:22:23

    data:$("#selectid").serialize()

    你可以尝试替换为

    data:$("#selectid").find('input').serialize()

    如果不行的话,我觉得你需要检查一下脚本的写法,是否符合规范.如:
    <a class=" <?php if($status==1): ?>selected<?php endif; ?>" >RETURN</a>

    你这么写

    <? while ($row = mysql_fetch_array($s))
    {
           <input type="checkbox" name="id[]" value="<? echo $row['mail_id'];?>">
     }
     ?>

    我不认为它能够正常工作....

    reply
    0
  • Cancelreply