我需要在弹出窗口中加载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
答案 0 :(得分:0)
这是我对您的代码所做的更改:
function myFunction() {
var myWindow = window.open("", "MsgWindow", "width=200, height=100");
myWindow.document.write($(".content").html());
myWindow.document.close();
}