0

我有以下提交到 iframe 的 jquery 函数。PHP发回的消息是json。我不知道如何在 jquery 中接收此消息,以便将其显示给用户。

function IframeSubmit(){
    // remove iframe if exists
    $('#hiddenIframe').remove();

    // change target attribute on form
    form.attr('target', 'hiddenIframe');

    // create and add iframe to page
    $('<iframe />', {
        name: 'hiddenIframe',
        id: 'hiddenIframe',
        style: 'display:none'
    }).appendTo('body');

    // on response from php file
    $('#hiddenIframe').load(function(){
        // process received message here ...
    });
}

谢谢!

4

1 回答 1

0

我有一个类似的代码:

$(document).ready(function(){
    $('form#myform').submit(function(){
          $("#hiddenIframe").remove();    
          $('<iframe name="hiddenIframe" />').appendTo('body').attr({'id': 'hiddenIframe'});
          var Frame = $('#hiddenIframe');
          var newSrc = 'about:blank?nocache=' + Math.random(); //force new URL
          Frame.attr('src', newSrc); 
          var iframe = $('#hiddenIframe').load(function(){
              var response = iframe.contents().find('body').html();
              var txt = $.parseJSON(response);
              $('#message').append(txt.message);
              if(txt.error == false){
                   $.ajax({
                       type: 'POST',
                       url: '?myurl',
                       dataType: 'json',
                       data: {
                           //some data
                       },
                       success: function(data){
                           //some action
                       } 
                   });                                         
              }           
         });                                             
    });
});

iframe 中的输出为:

var response = iframe.contents().find('body').html();
var txt = $.parseJSON(response); 

读取响应,例如:txt.error 或 txt.message

PHP部分:

$this->message['error'] = true;
$this->message['message'] = "Problem!";

echo/print json_encode($this->message);
于 2012-06-19T06:09:16.190 回答