Angular JS と昔ながらの JavaScript を使用して単純なコード エディターを作成しましたが、コード プレビュー機能を追加したい段階になりました。
iframe を動的に作成し、それを DOM に追加し、機能させるために必要な要素を入力するために使用したコードは次のとおりです。
...
function updatePreview() {
var iFrame, doc, styleElm, jQueryElem, styles, javascript;
var container, $head, $body;
var $jsRequirements = [], addditionalJS = [], $cssRequirements = [];
//set base requirements for iframe element
$jsRequirements = [
'http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js',
'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/jquery-ui.min.js',
];
$additionalJS = [
'js/libs/main.js',
'js/libs/plugin.slideshow.js'
];
$cssRequirements = [
'c/theme/jquery-ui-1.8.23.custom.css'
];
//set up a new HTML5 iFrame with basic styling
iFrame = document.createElement('iframe');
iFrame.className = "previewPane";
iFrame.style.height = "100%";
iFrame.style.width = "100%";
//append iFrame to previewContainer
container = document.getElementById('previewPanel');
container.appendChild(iFrame);
//init main iFrame content for manipulation
doc = iFrame.contentDocument || iFrame.contentWindow.document;
// init the inline style container element
styleElm = doc.createElement('style');
styleElm.setAttribute('rel','stylesheet');
styleElm.setAttribute('type','text/css');
styleElm.setAttribute('media', 'screen');
//grab css from CSS code pane
styles = cssCode.getValue();
//grab JS from the JS code pane
javascript = jsCode.getValue();
//write main HTML code
doc.open();
doc.write(htmlCode.getValue());
doc.close();
//must add any JS & styling *after* initial html code dump
$head = doc.getElementsByTagName('head')[0];
$body = doc.getElementsByTagName('body')[0];
//init script element and populate
//with local jQuery variable declaration
//for iFrame script execution
jQueryElem = doc.createElement('script');
jQueryElem.setAttribute('type','text/javascript');
//append the JS from the jsPanel to the same element
jQueryElem.appendChild(document.createTextNode(javascript));
//now the javascript
setupJSReqs($jsRequirements, doc, $head);
setupJSReqs($additionalJS, doc, $body);
styleElm.appendChild(document.createTextNode(styles));
$head.appendChild(styleElm);
$body.appendChild(jQueryElem);
}
setTimeout(updatePreview, 300);
});
}
function setupJSReqs(JSArray, container, target) {
for (var x in JSArray) {
var jsElem = container.createElement('script');
jsElem.setAttribute('type','text/javascript');
jsElem.setAttribute('src', JSArray[x]);
target.appendChild(jsElem);
}
}
このコードは視覚的には正常に動作します (つまり、chrome 開発ツールはすべての要素を正しい場所に表示します) が、エラーが発生します:
**Uncaught ReferenceError: $ is not defined**
私は間違っている可能性がありますが、dom が iframe jQuery ライブラリを正しく取り込んでいないと推測しています。var $ = parent.$ のようなものでこれを回避できますが、それは理想的な解決策ではありません。
エラーを修正するための提案はありますか??
ありがとう