当前位置: 首页 > article >正文

JS实现在线预览HTML文件

要在JavaScript中直接预览一个在线的HTML文件,可以采用以下几种方法:

使用iframe标签

  • 这是最简单的方法之一。你可以创建一个iframe元素,并设置其src属性为在线HTML文件的URL。
  • 示例代码:
    const iframe = document.createElement('iframe');
    iframe.src = 'https://example.com/your-online-html-file.html';
    document.body.appendChild(iframe);
    

使用window.open方法

  • 可以通过window.open方法打开一个新的浏览器窗口或标签页来预览在线HTML文件。
  • 示例代码:
    window.open('https://example.com/your-online-html-file.html', '_blank');
    

这种方式可能会直接触发浏览器的下载行为,而不是预览,可以参考

使用fetchAPI加载并插入DOM

  • 如果你需要更复杂的控制,比如在当前页面内动态加载并显示HTML内容,可以使用fetch API获取HTML内容,然后将其插入到指定的容器中。
  • 注意:由于跨域资源共享(CORS)策略,这种方法可能受限于目标服务器的配置。
  • 示例代码:
    fetch('https://example.com/your-online-html-file.html')
      .then(response => response.text())
      .then(html => {
       	// 创建新窗口
        const newWindow = window.open('', '_blank');
    
        // 确保新窗口已经加载完成
        if (newWindow) {
          newWindow.document.open();
          newWindow.document.write(html);
          newWindow.document.close();
        } else {
          console.error('无法打开新窗口');
        }
      })
      .catch(error => console.error('Error fetching the HTML file:', error));
    

封装fetch预览方法

方法封装

/**
 * 预览html文件
 * @param htmlUrl html文件地址
 */
export async function previewHtml(htmlUrl) {
  if (!htmlUrl) {
    console.error('HTML URL is required')
    return
  }

  try {
    const response = await fetch(htmlUrl)
    if (!response.ok) {
      throw new Error(`HTTP error! status: ${response.status}`)
    }
    const html = await response.text()
    // 创建新窗口
    const newWindow = window.open('', '_blank')
    // 确保新窗口已经加载完成
    if (newWindow) {
      newWindow.document.open()
      newWindow.document.write(html)
      newWindow.document.close()
    } else {
      console.error('无法打开新窗口')
    }
  } catch (e) {
    console.error('Error fetching the HTML file:', e)
    return Promise.reject(e)
  }
}

使用

preview() {
  showLoading()
  previewHtml(this.multiQcHtml).then(() => {
    hideLoading()
  })
},

http://www.kler.cn/a/444961.html

相关文章:

  • PostgreSQL技术内幕21:SysLogger日志收集器的工作原理
  • 拼多多电子面单接入:常见问题及专业解决方案
  • PC寄存器(Program Counter Register) jvm
  • git使用和gitlab部署
  • ubuntu16.04ros-用海龟机器人仿真循线系统
  • linux下蓝牙调试工具hcitool的使用
  • 分布式刚度编织,让可穿戴触觉更出色 ——Haptiknit
  • Visio——同一个工程导出的PDF文件大小不一样的原因分析
  • 深度学习笔记27_RNN实现阿尔茨海默病诊断(pytorch)
  • 基础2:值类型与右值引用
  • React和Three.js结合-React Three Fiber
  • 前端面经每日一题Day16
  • 华为ensp--BGP路径选择-AS_Path
  • 电力场景输电塔分割数据集labelme格式288张4类别
  • AI 在游戏领域的革命性技术
  • 人工智能 (AI) 模型的数据泄露问题
  • Serverless监控和调试、持续集成和持续部署
  • 小红书关键词搜索采集 | AI改写 | 无水印下载 | 多维表格 | 采集同步飞书
  • MySQL日期类型
  • 如何高效使用 Facebook Business Manager (商务管理平台)
  • AI开发:支持向量机(SVM)鸢尾花模型入门教程- Python 机器学习
  • linux cpu 管理
  • Unity Post请求发送fromdata数据content-type
  • 企业为何需要可视化数据分析系统
  • 迅为RK3576开发板接口丰富4G/5G、wifi6、多网口、NPU等
  • linux 根据名称 杀死linux 上某个jar进程或其他进程