将变量从getJSON返回到php变量

时间:2019-05-24 17:52:20

标签: javascript php jquery

早上好。我需要获取从tankIni[0]返回的可行getJSON的值,然后移到将显示在上方的php $tanque变量中。

使用此php变量,我将创建一个foreach php。

示例代码:

<!DOCTYPE html>
<html lang="pt-br">

<head>
  <meta charset="utf-8" />
  <title></title>

  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>

<body>

  <div class="row">
      <?php 
         $tanque = "<script>$(document.body).append(checklistIni);</script>";
         foreach($tanque as $res) { 
      ?>
       ...
       ...
       ...
      <?php } ?>
  </div>




$(document).ready(function() {

  $("#buscarVeiculo").click(function(e) {

    $.getJSON("buscarVeiculo.php", {
        placa: $(".placa").val(),

      },
      function(json) {

        if (json[0].retorno == 1) {
          $("#btn-10").removeClass("disabled");

          var tanqueIni = json[0].tanqueIni.split("|");

          $('#tanqueIni').html(tanqueIni[1]);
          var tanque = tanqueIni[0];

        } else {
          $("#btn-10").addClass("disabled");
        }

      }
    );

  });

});
</body>

</html>

0 个答案:

没有答案