0

我正在处理如何向jquery 的 iframe 发布表单插件发送成功的响应。

借助插件演示的源码可以看到有如下代码:(点此查看源码

complete : function (response)
{
    var style,
        width,
        html = '';


    if (!response.success)
    // I've always came to this block! And that is exactly the problem that I have
    {
        $('.message').slideUp(function ()
        {
            $(this)
                .html('There was a problem with the image you uploaded')
                .css({
                    color : '#9c0006',
                    background : '#ffc7ce',
                    borderColor : '#9c0006'
                })
                .slideDown();
        });
    }

    else /***** When is the response successful and when will code come here? *****/
    {
        /*
        following code goes here...
        */
    }
}

确切的问题是,什么时候response.success会是真的?我应该如何TRUE使用 PHP 设置它?(请回答有风格和没有JSON风格)

4

1 回答 1

0

当您运行 ajax 并与 php 进行通信时。你将抓取任何 php 回显并使用它。在这种情况下,使用 json 编码可能是最明智的。这是一个非常基本的例子给你一个想法。

一个php文件:

echo json_encode(array('success' => true));

现在是一个基本的ajax请求

$.ajax({url:"ajax.php",success:function(result){
     result = $.parseJSON(result);  // we do this to convert the php into javascript format
     if(result.success){
         alert('this is true');
     }
}});
于 2013-07-24T23:56:31.093 回答