我正在尝试截取在新窗口中创建的页面,而不是弹出但在新选项卡中。代码现在很简单。并且可以创建页面。 但是我的目标是制作全页截图。我在Chrome中使用过 - "全页屏幕截图"并且在Firefox顶部屏幕捕获 - 所有这些都是灰色的 - 这意味着无法捕获整个页面。 screenshot fialed
代码
<!doctype html>
<head>
<title>New Window Screenshot</title>
</head>
<body>
<script>
function newWindow() {
var w = window.open('', '_blank');
w.document.write('Loading preview...');
}
</script>
<button onclick="newWindow()">Click me</button>
</body>
</html>
请,不需要html2canvas。我只需要午餐一些screencapturers。我猜,我不知道......请帮忙!