douyong1908 2018-05-24 05:20
浏览 419
已采纳

选中复选框时,调用Ajax或提交按钮

I have following PHP while loop which is showing data as the checkbox. The checkbox can be multiple or one.

<?php
$supplier = new Admin;
$supplier->rowQuery("SELECT * FROM supplier");

echo '<form id="formId">';
    while ( $data = $supplier->result->fetch_assoc()) {        

        $sid          =  (int) $data['sid'];
        $supplierName = output($data['supplierName']);

        echo '<label class="checkbox-inline">';
            echo "<input type='checkbox' name='sid[]' data-sid='$sid' value='$sid' class='supplierClass'> $supplierName";
        echo '</label>';
    }
echo '<input type="hidden" name="submit" value="supplier" class="clickBtn">';
echo '</form>';
?>

Now I want to call Ajax when at least one checkbox or multiple checkbox is checked. So to do that I have following Javascrpt:

$('.supplierClass').click(function() {
var sid = $(this).data('sid');
if(this.checked){
   // $("input[type=submit]").trigger(".clickBtn");
   $('.clickBtn').trigger();
   $('#formId').submit(function() {
      $.ajax({
        url         :   'process/get-vehicle.php',
        type        :   'POST',
        dataType    :   'html',
        data        :   {
          sid   :  sid,
        },
        beforeSend  :   function () {
            $('.allVehicle').html('Please wait...');
        },
        success     :   function ( result ) {
            $('.allVehicle').html(result);
        }
    });
  });
}
});

but it's not called the Ajax :(

Overall Goal

You can see that I have set the checkbox name as array sid[]. Becuase I need to get all checkbox checked data as array in a PHP file.

So how can I call Ajax when one or multiple checkboxes are checked? Please note that: In PHP file I want to get all checkbox or one checkbox value.

My Thought:

I think there should be a submit button as hidden. When I click on any checkbox It's should press the hidden button by jQuery to call the Ajax.

  • 写回答

3条回答 默认 最新

  • dourong6054 2018-05-24 05:31
    关注

    Remove the submit event, use a change event, get all the checked sids

    $('.supplierClass').change(function() {
    
    if( $('.supplierClass:checked').length){
     var sids = [];
     $('.supplierClass:checked').each(function(i,v) {//get all the sids of the elements checked
         sids.push($(v).val());
      });
          $.ajax({
            url         :   'process/get-vehicle.php',
            type        :   'POST',
            dataType    :   'html',
            data        :   {
              sid   :  sids,
            },
            beforeSend  :   function () {
                $('.allVehicle').html('Please wait...');
            },
            success     :   function ( result ) {
                $('.allVehicle').html(result);
            }
        });
    }
    });
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 (希望可以解决问题)ma和mb文件无法正常打开,打开后是空白,但是有正常内存占用,但可以在打开Maya应用程序后打开场景ma和mb格式。
  • ¥20 ML307A在使用AT命令连接EMQX平台的MQTT时被拒绝
  • ¥20 腾讯企业邮箱邮件可以恢复么
  • ¥15 有人知道怎么将自己的迁移策略布到edgecloudsim上使用吗?
  • ¥15 错误 LNK2001 无法解析的外部符号
  • ¥50 安装pyaudiokits失败
  • ¥15 计组这些题应该咋做呀
  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?
  • ¥15 让node服务器有自动加载文件的功能
  • ¥15 jmeter脚本回放有的是对的有的是错的