3

DIVa を新しいウィンドウに渡そうとしています。

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 に答える
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 に答える