把网页内容全部导入word

简介: .mainTitle        {            font-size: x-large;            font-weight: bold;            background-color: #FFFFFF;           ...

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <meta   http-equiv="Content-Type"   content="text/html;   charset=gb2312">  
    <title></title>
    <style type="text/css">
        .mainTitle
        {
            font-size: x-large;
            font-weight: bold;
            background-color: #FFFFFF;
            color: #FF0000;
            text-align: center;
        }
        .mainFrame
        {
            border-top: 1px solid #FF0000;
            border-bottom: 1px solid #FF0000;
            border-width: 3px 0px 3px 0px;
            height: 454px;
            border-left-style: solid;
            border-right-style: solid;
        }
        .smallTitle
        {
            font-size: large;
            font-weight: bold;
        }
        .content
        {
            font-size: 14px;
            text-indent: 2em;
        }
    </style>

 <script language="JavaScript">
<!--
     function OpenWord() {
         document.getElementById("Button1").style.visibility = "hidden";
         Layer1.style.border = 0;
         word = new ActiveXObject('Word.Application');
         word.Application.Visible = true;
         var mydoc = word.Documents.Add('', 0, 1);
         myRange = mydoc.Range(0, 1);
         var sel = Layer1.document.body.createTextRange();
         sel.select();
         Layer1.document.execCommand('Copy');
         sel.moveEnd('character');
         myRange.Paste();
         location.reload();
         //word.ActiveWindow.ActivePane.View.Type=9;
     }
-->
</script>
   
</head>
<body>
 <div id="Layer1" >
    <p class="mainTitle">
        2010年第五期灾情档案</p>
    <div class="mainFrame">
        <br />
        <div>
            <span class="smallTitle">一、出灾地点范围: </span>
            <br />
            dsfdsfdsfdfdsfsfsdfsdfsdfsdfsdfsdfsdf
            <br />
            <br />
        </div>
        <div>
            <span class="smallTitle">二、灾情实况:</span>
            <br />
            <span class="content">dsfdsfdsf;lk;lk;lk;lkl;jkl;jhhjkhjklhjklh </span>
            <br />
            <br />
        </div>
        <div>
            <span class="smallTitle">二、灾情实况:</span>
            <br />
            <div class="content">
                张慧芳dsfdsfdsf
            </div>
            <br />
            <br />
        </div>
        <div>
            <span class="smallTitle">二、灾情实况:</span>
            <br />
            <span class="content">张慧芳dsfdsfdsfsdfdsfdsf </span>
            <br />
            <br />
        </div>
        <div>
            <span class="smallTitle">二、灾情实况:</span>
            <br />
            <span class="content">dsfdsfdsf dsfsdfsdfsdfsdfsdfsdf</span>
            <br />
            <br />
        </div>
    </div>
    <p>
  
        <input id="Button1" type="button" value="button" onclick="OpenWord()" /></p>
</div>
</body>
</html>

但我不知道为什么不能再vs中调试用,知道的能否告知下

目录
相关文章
jsp页面中显示word/excel文档方法
jsp页面中显示word/excel文档方法
146 0
|
Python
Python3,2行代码,多种方法,直接把网页内容转换成PDF文档和图片。
Python3,2行代码,多种方法,直接把网页内容转换成PDF文档和图片。
215 0
|
5月前
使用LabVIEW打开默认应用程序中的文档(PDF,Word,Excel,Html)
使用LabVIEW的&quot;Open a Document on Disk.vi&quot;,存于&lt;LabVIEW&gt;\vi.lib\Platform\browser.llb,可让默认应用打开硬盘文档。此VI仅基础打开功能,高级控制推荐LabVIEW Report Generation Toolkit或ActiveX。注意:避免版本升级问题,最好将VI复制到vi.lib外的目录。
235 3
|
4月前
|
数据采集 XML 存储
HTML内容爬取:使用Objective-C进行网页数据提取
HTML内容爬取:使用Objective-C进行网页数据提取
|
12月前
|
Web App开发 JSON 前端开发
根据markdown文件反向转换成chrome浏览器书签html
前几天手贱直接把 bookmark 的源文件给删了,这下这么多年收藏整理的书签只有自己博客里的一个 markdown 文件了,毕竟还是直接用浏览器自带的 bookmark 查看会方便好多,只能想办法怎么根据现在的 markdowm 文件转换回 bookmark.html 文件了
100 0
|
数据处理 网络安全 Python
Requests+Etree+BeautifulSoup+Pandas+Path+Pyinstaller应用 | 获取页面指定区域数据存入html、excel文档
Requests+Etree+BeautifulSoup+Pandas+Path+Pyinstaller应用 | 获取页面指定区域数据存入html、excel文档
253 0
Requests+Etree+BeautifulSoup+Pandas+Path+Pyinstaller应用 | 获取页面指定区域数据存入html、excel文档
|
Web App开发 XML Java
通过freemarker生成一个word,解决生成的word用wps打开有问题的问题,解决出word时中文文件名乱码问题,解决打开出word时打开的word出现问题的问题,出图片,解决动态列表
 通过freemarker制作word比较简单 步骤:制作word模板。制作方式是:将模板word保存成为xml----在xml的word模板中添加相应的标记----将xml的word文件的后缀名改成ftl文件(要注意的是生成xml格式要是2003格式的xml,也就是说拿到的word模板得是2003格式的,否则用wps打开word将会出现问题)   详细步骤如下: 模板制作(将要动态显示的
4620 0
|
Web App开发 机器学习/深度学习 算法
Crawler:基于BeautifulSoup库+requests库+伪装浏览器的方式实现爬取14年所有的福彩网页的福彩3D相关信息,并将其保存到Excel表格中
Crawler:基于BeautifulSoup库+requests库+伪装浏览器的方式实现爬取14年所有的福彩网页的福彩3D相关信息,并将其保存到Excel表格中
Crawler:基于BeautifulSoup库+requests库+伪装浏览器的方式实现爬取14年所有的福彩网页的福彩3D相关信息,并将其保存到Excel表格中
|
Python Windows
python读取excel内容再转变成html添加到outlook中
读取excel里的表格里的内容,然后打开本机的outlook。把excel里的内容添加到正文里,注意。这里是要添加到正文!正文!正文!而不是添加到附件里
734 0
python读取excel内容再转变成html添加到outlook中
从爬取的文章 HTML 中提取出中文关键字
分2步。 1.从 HTML 中提取出纯文本(去掉标签) import org.htmlparser.NodeFilter; import org.htmlparser.
1467 0