주류 브라우저의 Iframe 적응형 높이와 호환되는 js 스크립트는 다음과 같습니다.
//iframe 높이 적응형
function iframeAutoFit(iframeObj) {
setTimeout(function () {
if (!iframeObj) return;
iframeObj.height = (iframeObj .Document ? Document.body.scrollHeight : iframeObj.contentDocument.body.offsetHeight)
}, 200)
호출 방법:
확장 프로그램:
//동적으로 스타일 추가
function addSheetFile(obj, path) {
if (obj == 정의되지 않음 || obj == null)
obj = document;
var fileref = obj.createElement("link")
fileref.rel = "스타일시트 ";
fileref.type = "text/css";
fileref.href = 경로;
fileref.media = "screen";
var headobj = obj.getElementsByTagName('head')[ 0];
headobj.appendChild(파일 참조)
}