在JQuery Dialog中未加载iframe内容

时间:2014-03-30 01:02:26

标签: javascript jquery jquery-ui iframe jquery-ui-dialog

我有一个页面,我将动态创建一个iframe并将其附加到div。 该div将附加到jquery对话框。

<div id="diviframe"></div>
<script>
var iFrame = $('<iframe id="thepage" width="450" height="400"></iframe>').appendTo("#diviframe");
    var iFrameDoc = iFrame[0].contentDocument || iFrame[0].contentWindow.document;
    iFrameDoc.write('<p>Some useful html</p>');
    iFrameDoc.write('<p>Some useful stuff</p>');   
    iFrameDoc.close();


    $("#diviframe").dialog({

        autoOpen: false,
        modal: true,
        height: 500,
        width:500,
        open: function(ev, ui) {

    }

    });

$("#diviframe").dialog('open');

在jquery对话框中打开iframe时,不会写入iframe的内容。 任何人都可以为此建议解决方法吗?

更新

 function test() {
        var iFrame = $('<iframe id="thepage" width="500" height="500" src="http://stackoverflow.com"></iframe>').appendTo("#diviframe");
        var parent = "divparent";
        var iFrameDoc = iFrame[0].contentDocument || iFrame[0].contentWindow.document;
        iFrameDoc.write('<p>Some useful html</p>');
        iFrameDoc.write('<p>Some useful stuff</p>');
        iFrameDoc.close();      
        return iFrame;
    }






    var $dialog; //Must be at the global scope
    function dialog() {      
        alert(1);
        $.get(test, {}, function(html) {
            $dialog.html(html);
            $dialog.dialog("open");
        });
    }

    $(function() {
        //Initialize (without showing it)
        var $dialog = $('<div id="dialog" title=""></div>').dialog({
            autoOpen: false,
            modal: true
        });
    });
    dialog();

我尝试在jquery对话框加载后动态调用函数,但是它显示了一些错误。如何从jquery对话框加载函数?

1 个答案:

答案 0 :(得分:0)

我认为您不需要使用iframe来处理您正在做的事情,除非您在发布问题之前删除了一些重要细节。

您可以将您的内容直接附加到#diviframe,并且它会显示得很好。

$("#diviframe").append("<p>Some useful html</p>");
$("#diviframe").append("<p>Some useful stuff</p>");

我想知道 - 你是否想在对话框中制作一个可滚动的面板?如果是这样,您可以设置div的CSS以实现您的需要:

.myScrollableBox {
    width: 450px;
    height: 400px;
    overflow: auto;
    border: 1px solid #000;
}

您可能还想为其添加一些填充,以便文字不会被边框卡住。