Sahte jQuery ajax GET parametresi

0 Cevap php

Ben bir süre döngü bu PHP var:

echo "<td><a href='#' class='po'>" . $row['order_no'] . "</a></td>";

ve bu jQuery:

$(".po").click(function(){
                var po = $(this).text();
                var dataString = 'po='+ po;

                $.ajax({
                  context: this,
                  type: "GET",
                  url: "projectitems.php",
                  data: dataString,
                  cache: false,
                  success: function(html) {
                    $(this).closest(".resultsItems").html(html);
                  }
                });

            });

Ama GET parametreleri şudur:

  _ 1291741031991
  po    102

po doğru ancak üst çizgi yeryüzünde nedir? Bu arada Kundakçı oldu

0 Cevap