马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?立即注册
x
一、使用iframe打开
- newWindow.document.title = "新页面标题";
- const iframe = newWindow.document.createElement('aaa')
- iframe.src = url; // 你想要加载的URL
- iframe.width = '100%';
- iframe.height = '100%';
- newWindow.document.body.appendChild(iframe);
复制代码 二、使用embed标签
- const blob = new Blob([res.data], { type: 'application/pdf' })
- const url = URL.createObjectURL(blob)
- const newWindow = window.open('', '_blank')
- if (newWindow) {
- newWindow.document.write(`
- <html>
- <head>
- <title>考核比例参照表</title>
- </head>
- <body>
- <embed src="${url}" type="application/pdf" width="100%" height="100%">
- </body>
- </html>
- `)
- newWindow.document.close()
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。 |