在新窗口中打开存储在javascript变量中的html文件

时间:2014-10-05 16:55:12

标签: javascript html variables popup

我有以下带有HTML代码的javascript变量:

var html_ticket = '<!doctype html>' +
'<html dir="ltr" lang="en" class="no-js">' +
'<head> ' +
'   <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> ' +

'   ...... ' +

'</body> ' +
'</html> ';

我想在新窗口中将变量内容打开为HTML。

这可能还是我接近错了?

此致

2 个答案:

答案 0 :(得分:2)

您只需使用类似的代码

var newWindow = window.open();
var html_ticket = '<html>...</html>';

newWindow.document.write(html_ticket);

答案 1 :(得分:1)

当然你可以:看看这里:

Open a new tab with custom HTML instead of a URL

var newWindow = window.open();
var html_ticket = '<html>...</html>';

newWindow.document.write(html_ticket);

JS Fiddle demo