我正在使用ajax函數,其中我傳遞一個隱藏的字段值,並根據該值傳遞到下一個文件和查詢運行重新調整值(html),我更新後來到那個隱藏的領域,但問題是當我使用隱藏字段的更新值通過一個變量傳遞它dosent採取新的值更新,而不是它需要隱藏字段的舊值?誰能幫我這個ajax請求後隱藏字段的值
var pre_prod_id = $('.prod_id').val(); //old hidden field value
$.ajax({
type: "GET",
url: "eg",
cache: false,
success: function(html) {
$('.prod_id').val(html); // got updated value via ajax and updated
}
});
var prod_id = $('.prod_id').val(); // getting new value of hidden field
alert(prod_id); // alert gives still the old value ???
$target = 'egab=' + abd + '&& abc=' + abc + '&& action=' + action + '&& prod_id=' + prod_id;
我的步驟我所試圖做的已經提到?希望有人找到解決辦法。
任何解決方案的朋友?真的需要幫助這個 – 2012-07-22 11:10:35