0

在我的 html 文件中,我有一个 javascript 函数,

$("#contactopts").change(function() {
   var response = simplefunc();
   $('#sampID').html(response);
   $.facebox($('#sampID'));
}

该函数simplefunc是一个 jquery 函数,它从后端返回一个 html 文件作为响应。

我期待一个带有从后端发送的 html 文件内容的 facebox。但相反,我得到了一个空的脸框。我试过了console.log(response。火鸟说反应是undefined..

有人可以告诉我我做错了什么吗?我可以看到我缺少一些基本的东西..

4

1 回答 1

1
try like this,
$("#contactopts").change(function() {
   var response = simplefunc();
   //$('#sampID').html(response);
   //$.facebox($('#sampID'));
}

function simplefunc()
{
        $.ajax({
            type : "POST",
            url : "sample_ajax_page.php",
            data : {xxx:xxx,yyy:yyy},       
            success : function(html){
                            $('#sampID').html(html);
                            $.facebox($('#sampID'));
                }


}

J-Query 或 javascript 不会等待 ajax 返回,这就是你让它空白的原因。

于 2013-09-13T06:17:26.493 回答