3

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.$ のようなものでこれを回避できますが、それは理想的な解決策ではありません。

エラーを修正するための提案はありますか??

ありがとう

4

1 に答える 1

1

<script>DOM操作で要素を動的に追加しています。これは、外部スクリプトが非同期でロードされ、(後で挿入された)インラインスクリプトの後に実行されることを意味します。

これを回避するには、次のことができます。

  • 外部リソースのロードイベントをフックし、それらがすべてロードされた後にインラインスクリプトを挿入します
  • ページ全体に使用doc.write(…)します。つまり、スクリプトタグをhtml文字列に挿入します。次に、スクリプトがロードされ、同期的に実行されます。
于 2012-08-22T12:55:38.220 に答える