我用下面的使用來獲取一些HTML Jquery的:與阿賈克斯jQuery的
的index.php
$.post(
'get-products.php',
$("#offerForm").serialize() + '&lastid=' + highest,
function(data) {
$('#demo').html(data);
}
是否有可能也獲取的值從GET-products.php變量,例如:
GET-products.php
<? echo $htmlOutput;
echo $variable; ?>
的index.php
$.post(
'get-products.php',
$("#offerForm").serialize() + '&lastid=' + highest,
function(data) {
$('#demo').html(data);
//variable processing statement goes here
}
參數數據類型是沒有必要的BTW,但它是安全的。 – giorgio 2012-02-08 13:17:52