gpt4 book ai didi

javascript - 在 window.open() 中打开页面的一部分的任何方式

转载 作者:太空宇宙 更新时间:2023-11-04 00:21:46 25 4
gpt4 key购买 nike

我有一个 html 页面,基本上它包含 2 个 div block 和 2 个链接。现在,当我单击一个链接时,第一个 div 的内容应该会在新窗口中打开。同样,当我点击第二个链接时,第二个 div 的内容应该在另一个新窗口中打开。

这是一个代码 - http://jsfiddle.net/PAJWV/5/

我同意这是不可能的,但万一有解决方法。谢谢。

最佳答案

function printPage(divid)
{
elementId=divid;

var printContent = document.getElementById(elementId);

var windowUrl = 'about:blank';

var uniqueName = new Date();

var windowName = 'Print' + uniqueName.getTime();

var printWindow = window.open(windowUrl, windowName,'left=500,top=500,width=500,height=500');



printWindow.document.write('<html><head></head><body>'+printContent.innerHTML+'</body></html>');




}

通过调用函数 onclick 来尝试上面的代码

关于javascript - 在 window.open() 中打开页面的一部分的任何方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8799090/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com