我在使用$ .post发回数据时遇到问题。 这是我的$ .post的JS代码:
$.ajaxSetup({ cache: false });
$.post(
"run.php",
{ q: cmd , dir: dir },
function(data, status){
$("#results").html(data);
}
);
并在run_php中:
// I run python code using q and dir. It works fine.
foreach ($fileArr as $key => $value) {
echo '<p><a href="'.$default_dir.'/'.$value.'" target="_blank">'.$value.'</a></p>';
}
// But here it doesn't return any value.
适用于Chrome和Firefox,而不适用于IE。可能是什么问题呢? 这段代码很简单,但我几个小时都在苦苦挣扎。 提前谢谢。