将HTML表导出到MSWord

时间:2012-06-12 20:16:58

标签: html ms-word html-table

我有一个带有表的html文件,我正在转换为.doc
我已经能够在“打印视图”中自动打开文档了
问题是表格对于页面来说太大了。我已将宽度设置为100%,但word默认选中“允许表扩展到边距”选项。我想将其设置为“未选中”,其方式类似于我将视图设置为“打印”

这是我正在使用的模板:

<html xmlns:w="urn:schemas-microsoft-com:office:word">
<head>
<!--[if gte mso 9]>
  <xml>
    <w:WordDocument>
      <w:View>Print</w:View>
      <w:DoNotOptimizeForBrowser/>
    </w:WordDocument>
  </xml>
<![endif]-->
<style type="text/css">
  <%= global_style %>
  <%= report_style %>
</style>
</head>
<body>
<div id="word-export" class="WordSection1">

文档中提到了一些关于“w:GrowAutoFit”的内容,但如果这样可行,我不确定如何使其“假”。

msdn docs
more msdn docs

1 个答案:

答案 0 :(得分:3)

发现它!你必须使用w:兼容性和w:DontGrowAutofit。有趣的是,在GrowAutoFit文档附近没有引用DontGrowAutofit。

<html xmlns:w="urn:schemas-microsoft-com:office:word">
<head>
<!--[if gte mso 9]>
  <xml>
    <w:WordDocument>
      <w:View>Print</w:View>
      <w:DoNotOptimizeForBrowser/>
      <w:Compatibility>
        <w:DontGrowAutofit/>
      </w:Compatibility>
    </w:WordDocument>
  </xml>
<![endif]-->
<style type="text/css">
  <%= global_style %>
  <%= report_style %>
</style>
</head>
<body>
<div id="word-export" class="WordSection1">