在弹出窗口中加载div内容

时间:2015-09-07 07:44:31

标签: javascript jquery html

我需要在弹出窗口中加载div。

目前我可以通过document.write加载直接html内容,但如何在弹出窗口中加载div(带有表单)。

这是当前的代码

function myFunction() {
            var myWindow = window.open("", "MsgWindow", "width=200, height=100");
            myWindow.document.write("<p>Need to load the .content div here</p>");
        }

Jquery / JavaScript会做任何事情。

以下是工作 DEMO

1 个答案:

答案 0 :(得分:0)

这是我对您的代码所做的更改:

function myFunction() {
    var myWindow = window.open("", "MsgWindow", "width=200, height=100");

    myWindow.document.write($(".content").html());
    myWindow.document.close();

}

Here is the JSFiddle demo