私はこのPHPをwhileループに入れています:
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からでした