最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Can I use JavaScript to send HTML to a new tabwindow and have the CSS loaded? - Stack Overflow

programmeradmin2浏览0评论

I have some JavaScript in a page that makes a call to a server and gets some HTML that I want to display in a new browser tab or window. I can use window.document.write(myHTML) to put the HTML in the new container but the HTML contains some CSS and JavaScript includes and these do not get included by the new window. Is there any way to get the browser to take the HTML and fully evaluate it?

Thanks

Paul

I have some JavaScript in a page that makes a call to a server and gets some HTML that I want to display in a new browser tab or window. I can use window.document.write(myHTML) to put the HTML in the new container but the HTML contains some CSS and JavaScript includes and these do not get included by the new window. Is there any way to get the browser to take the HTML and fully evaluate it?

Thanks

Paul

Share Improve this question asked Jul 1, 2010 at 16:56 PaulPaul 411 gold badge1 silver badge2 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 7

Can you post your example javascript and the HTML you're writing to the window (or a stripped down test case, really)? If you're writing out a full HTML document (including html/head/body elements) using newWindow.document.write, it should work. Does your javascript look something like this?

var newWindow = window.open();
newWindow.document.write("<html><head><script type='text/javascript' src='yourCode.js'></scr"+"ipt></head><body>Your content</body></html>");
newWindow.document.close();

this worked for me.. the code doesn't seem to work in the editor here but you can try it in your browser console..

var newTab = window;
var pageContent = "<head> your html head should be here </head>";
    pageContent += "<body> the body should be <a class='heads'>here</a> </body>";
    newTab.open().document.write(pageContent);
.heads{
    font-size:50px;
    color: green;
  }

function Popup(data) {

   var mywindow = window.open('', 'title Here', 'height=400,width=600');
   mywindow.document.write('<html><head><title>my div</title>');

   //External Css will not work in print
   mywindow.document.write("<style>body{font-family:Arial}</style>");

   mywindow.document.write('</head><body><table>');
   mywindow.document.write(data);
   mywindow.document.write('</table></body></html>');

   mywindow.print();
   mywindow.close();

   return true;
 }
发布评论

评论列表(0)

  1. 暂无评论