このコードは 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();
}
});
}
}
});