0

document.write() を使用して HTML コードを JavaScript に記述しています。

結果は同じページに来ましたが、別のページに結果を表示したいです。

document.write('<table width="1000" border="1">');


                        document.write('<tr width="1000">'); 
                        document.write('<td width="100" bgcolor="#D8D8D8">Country</td>');
                        document.write('<td width="100" bgcolor="#D8D8D8">MCC</td>');
                        document.write('<td width="100" bgcolor="#D8D8D8">MNC</td>');
                        document.write('<td width="100" bgcolor="#D8D8D8">Network</td>');
                        document.write('<td width="100" bgcolor="#D8D8D8">Old Price</td>');
                        document.write('<td width="100" bgcolor="#D8D8D8">Current Price</td>');
                        document.write('<td width="100" bgcolor="#D8D8D8">Effective</td>');
                        document.write('<td width="100" bgcolor="#D8D8D8">Status</td>');
                        document.write('</tr>'); 
                        document.write('</table>');

このテーブルは Web ページに表示されているので、この結果を別の Web ページに表示したいと考えています。

ありがとうございます。

4

2 に答える 2

4

最初に使用window.open()してから、このウィンドウに書き込みます。

var w = window.open('','','width=200,height=100');
w.document.write("your html");
于 2012-07-09T11:33:33.203 に答える
1

これを試して

var doc =window.open('','mydoc',
  'width=350,height=250'
   +',menubar=0'
   +',toolbar=1'
   +',status=0'
   +',scrollbars=1'
   +',resizable=1');
 doc.document.writeln(
  '<html><head><title>doc</title></head>'
   +'<body >'
   +'something'
   +'</body></html>'
 );
于 2012-07-09T11:33:45.660 に答える