gpt4 book ai didi

php - 虚假的 jQuery ajax GET 参数

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:33:58 28 4
gpt4 key购买 nike

我在 while 循环中有这个 PHP:

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

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

});

但是GET的参数是这样的:

  _ 1291741031991
po 102

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

最佳答案

您已将缓存设置为 false,所以我猜这个数字是 jQuery 附加到查询字符串的“缓存断路器”。

关于php - 虚假的 jQuery ajax GET 参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4379342/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com