0

此代码在 FF 中有效,但在 IE 中无效,没有任何内容的弹出式幻想框,怀疑内容:$response.html() 在 IE 中无效

请帮忙!

$.ajax({
    type: 'POST',
    url: 'loginSelectAccount',
    data:{clientId:$username, password:$password, activationCode:$activationCode},
    dataType: 'html', 
    success: function (data) {
                 var $response = $(data);
                 var $retval = $response.find('#multiRecord').attr('value');

                 if ($retval == 'false'){
                     $.fancybox.close(true);
                     $("#logFormid").submit();
                  } else if($retval == 'true'){
                      $response.find('#username').attr('value',$username);
                      $response.find('#password').attr('value',$password);
                      $response.find('#activationCode').attr('value',$activationCode);
                      $response.find('#pageTryLogin').attr('value',$pageTryLogin);
                      $.fancybox.open({
                          content : $response.html(),
                          afterClose : function() {
                              $("#select_login").show();
                         }
                      });
                  }
             }
});
4

1 回答 1

0

尝试将 $response.html() 作为参数发送之前将其放入变量中...

于 2012-10-12T03:39:45.553 回答