참고 문서
브라우저 호환
<script type="text/javascript">
function getDoc(frame) {
var doc = null;
// IE8 cascading access check
try {
if (frame.contentWindow) {
doc = frame.contentWindow.document;
}
} catch(err) {
}
if (doc) { // successful getting content
return doc;
}
try { // simply checking may throw in ie8 under ssl or mismatched protocol
doc = frame.contentDocument ? frame.contentDocument : frame.document;
} catch(err) {
// last attempt
doc = frame.document;
}
return doc;
}
$(document).ready(function () {
$("#btnSubmit").click(function () {
var frameName = 'unique' + (new Date().getTime()); //generate a random name
var $frame = $('<iframe>', {
src: "javascript: false;",
name: frameName
}).appendTo('body').hide();; // Add iframe to body and hide
var form = document.forms.submitForm;
form.target = frameName; //set form target to iframe
form.action = "/board/notice/adminNoticeDetailPopAjax.do";
form.submit();
$frame.load(function (e) {
var doc = getDoc($frame[0]);
var docRoot = doc.body ? doc.body : doc.documentElement;
var data = docRoot.innerHTML;
//data is returned from server.
alert($.parseJSON($(docRoot).find("pre").text()).msg);
close();
});
/*
* 이벤트 .load()는 jQuery 1.8부터 deprecated 되었으므로
* .ready() 혹은 .on()을 사용할 것
*/
});
});
</script>