3

我正在尝试将 a 传递DIV给新窗口。

JavaScript

function openWin() {
    myWindow=window.open('','','width=200,height=100');
}

HTML

<div id="pass">pass this to the new window</div>
<a href="#" onclick="openWin();">click</a>

有人可以帮我吗?

4

3 回答 3

16

我想你想要这个:

var divText = document.getElementById("pass").outerHTML;
var myWindow = window.open('','','width=200,height=100');
var doc = myWindow.document;
doc.open();
doc.write(divText);
doc.close();

在 jsfiddle.net 上的演示

于 2012-09-07T03:25:14.757 回答
1

它对我有用

var divText = document.getElementById("id").outerHTML;
    var myWindow = window.open('','','width=200,height=100');
    var doc = myWindow.document;
    doc.open();
    doc.write(divText);
    doc.close();
于 2018-11-14T05:28:29.473 回答
0

将 div 的 id 传递给函数。

 function openWin(id) {
     var divText = document.getElementById(id).innerHTML;
     myWindow=window.open('','','width=200,height=100');
 }



 <div id="pass">pass this to the new window</div>
 <a href="#" onclick="openWin('pass')" />click</a>
于 2012-09-07T03:22:52.497 回答