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 に答える