虚假的jQuery ajax GET参数

ben*_*e89 5 php jquery http-get

我在一个while循环中有这个PHP:

echo "<td><a href='#' class='po'>" . $row['order_no'] . "</a></td>";
Run Code Online (Sandbox Code Playgroud)

这个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);
                  }
                });

            });
Run Code Online (Sandbox Code Playgroud)

但是GET的参数是这样的:

  _ 1291741031991
  po    102
Run Code Online (Sandbox Code Playgroud)

宝是正确的,但到底是什么顶线?顺便说一下,这是来自Firebug

kar*_*m79 6

你已经将缓存设置为false,所以我猜测,这个数字是jQuery附加到查询字符串的'cache-breaker'.