jquery $ .post无法工作

时间:2014-03-05 10:26:53

标签: javascript jquery ajax post

我在使用$ .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。可能是什么问题呢? 这段代码很简单,但我几个小时都在苦苦挣扎。 提前谢谢。

1 个答案:

答案 0 :(得分:0)

jquery 1.9 version使用IE作为不支持IE<=9

的jquery的最新版本

阅读jquery 2.0 release