weixin_33712881 2016-10-01 22:06 采纳率: 0%
浏览 36

Ajax中的多个变量

I am trying to send 2 variable from my comobox but is does not work, it only works when I send 1 here is the ajax code:

$(document).ready(function()
{
$(".clase").hide();
$(".ruta").change(function(){
var id=$(".rutas").val();
var dataString = 'id='+ id;
$.ajax
({
type: "POST",
url: "asientos.php",
data: dataString,
cache: false,
success: function(html)
{
        $(".clase").show();
       $(".clase").change(function(){
      var id=$(".rutas").val();
      var cla=$(".clase").val();
      var dataString = 'id='+ id;
     var data = 'cla'+ cla;
$.ajax
  ({
          type: "POST",
          url: "asientos.php",
          data: dataString,data,
         cache: false,
         success: function(html)
{
        $(".asientos").html(html);
}
           });
        });
       }
    }); 
  });
});

Now here is my html only showing the combo part cause i have multiple components in the form

<label class="ruta">Rutas </label> <select name="rutas" id="rutas" class="rutas" >
<?php   include 'rutas.php';   ?>
</select>
<label class="clase">Clases </label><select name="clase" id="clase" class="clase">
<option value="A">Clase Ejecutiva</option>;
<option value="B">Clase Media</option>;
<option value="C">Clase Economico</option>;
</select>

In the first combo I am Retrieving data from database and the second combo I inputted the data, now i need that both values from each combo save to the variables I have in my Php file in order to fill the third combo.

  • 写回答

1条回答 默认 最新

  • 胖鸭 2016-10-01 22:15
    关注

    Note that you are using two ajax request here, you can only use second request and if you want to send two select box value by using ajax than this will not work:

    var dataString = 'id='+ id; 
    var data = 'cla'+ cla;
    

    You can just simply use:

    var dataString = 'id='+ id+'&cla='+cla;
    

    In ajax, no need to use like that:

    data: dataString,data,
    

    you can just use like that:

    data: dataString,
    
    评论

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀