2
我有3個文件main.php,action.js和ajax.php,我成功地改變了從main.php到ajax.php的一些div的點擊內容與ajax在我的JavaScript文件中調用。它看起來像這樣:將返回值從php傳遞到js
var value = $(this).attr("id");
$.ajax({
type: 'get',
url: "ajax.php",
data: {
auto_value: value
},
success: function(response) {
$('.gridnr1, .textnr1').fadeOut(400, function(){
$('.textnr2, .gridnr2').fadeIn(400);
});
var newtextcaption = $(response).filter('#newtextcaption').html();
var box = $(response).filter('#box').html();
$('#textnr2').html(newtextcaption);
$('#gridnr2').html(box);
for (var i=0; i<VALUE_FROM_AJAXphp; i++) {
DO SOMETHING WITH i;
}
});
現在我需要從一個函數在ajax.php在我action.js一個返回值,因爲我要重複,直到這個值(見上面的代碼)。 如何將這個值從ajax.php傳遞到action.js。 我很困惑我需要什麼值得ajax?,json?或者是其他東西?
謝謝。
你的括號不正確匹配。 – Barmar