我在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的方式
答案 0 :(得分:6)
你已经将缓存设置为false,所以我猜,这个数字是jQuery附加到查询字符串的'cache-breaker'。