jquery ajax post请求的错误,不返回任何内容

时间:2011-02-17 10:25:25

标签: php jquery ajax

我正在使用jquery ajax调用来设置php中的会话值,这样做我有一个jquery代码:

$j(document).ready(function() {
        var $id =  null;

        $j(".calendar_list a").click(function(){
             $id = $j(this).attr("id");
             $j.ajax({
                type: 'POST',
                url: "http://www2.salone-studente.it/wordpress/wp-content/themes/salonestudente-young/backend.php",
                data: {img: $id},
                dataType: "json",
                success: function(response) {},
                error: function(xhr, type, exception) { alert("Error: " + type); }
            });
        });
    }); 

,backend.php的内容是

<?php
session_start();

$_SESSION['id'] = $_POST['img'];

?>

除了firefox之外,它在每个浏览器中都运行良好,在firebug中我看到在控制台中我看到一个红色的“错误之类”行: 发布http://www2.salone-studente.it/wordpress/wp-content/themes/salonestudente-young/backend.php 如果我向内看,我会看到所有正确的参数但显然没有反应。

0 个答案:

没有答案