我有一个简单的js函数,我传递了多次迭代。 这适用于1次迭代,如果它超过1,它表示在alert中未定义。 如何将test_iterations存储在ajax函数中。
function _startTest(test_iterations) {
$.ajax({
url: '<?php echo $_SERVER['PHP_SELF']; ?>?start=1',
success: function(data) {
$('.results').append('<p>Test #' + test_number +' ' + data + ' ms</p>');
$('.results').scrollTop(10000);
test_results.push(data);
alert("_startTest" + test_iterations);
if(test_number >= test_iterations) {
end_tests(test_iterations);
}
test_number++;
}
});
}
答案 0 :(得分:0)
不确定这个问题,但是你尝试过将var放在函数外面吗?好像你一直用test_number
var iteration_count = 0; // here
function _startTest(test_iterations) {
iteration_count++; // here
$.ajax({
url: '<?php echo $_SERVER['PHP_SELF']; ?>?start=1',
success: function(data) {
$('.results').append('<p>Test #' + test_number +' ' + data + ' ms</p>');
$('.results').scrollTop(10000);
test_results.push(data);
alert("_startTest" + iteration_count); // use this value instead
if(test_number >= test_iterations) {
end_tests(test_iterations);
}
test_number++;
}
});
}