我正在尝试将 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>
有人可以帮我吗?
我正在尝试将 a 传递DIV
给新窗口。
function openWin() {
myWindow=window.open('','','width=200,height=100');
}
<div id="pass">pass this to the new window</div>
<a href="#" onclick="openWin();">click</a>
有人可以帮我吗?
我想你想要这个:
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();
它对我有用
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();
将 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>