我有一个简单的 js 函数,我在其中传递迭代次数。如果它大于 1 则它适用于 1 次迭代,它在警报中说未定义。如何将 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++;
}
});
}