主流ブラウザの iframe アダプティブハイトと互換性のある js スクリプトは次のとおりです:
//iframe 高さ適応型
function iframeAutoFit(iframeObj) {
setTimeout(function () {
if (!iframeObj) return;
iframeObj.height = (iframeObj) .Document ? Document.body.scrollHeight : iframeObj.contentDocument.body.offsetHeight);
} < /span>
メソッドの呼び出し:
拡張子:
//スタイルを動的に追加します
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(ファイル参照)
}