我很难找到这个非常方便的Excel功能的好文档。请参阅以下代码和jsFiddle以供参考。
This jsFiddle包含以下代码:
CSS
body { font-family: calibri, san-serif; font-size:9pt; }
td, th { white-space: nowrap; }
.date { mso-number-format: "Short Date"; }
.text { mso-number-format: "\@"; }
.percent { mso-number-format: "Percent"; text-align:right; }
.int { mso-number-format: "\#\,\#\#0"; text-align:right;}
.account { mso-number-format: "\#\,\#\#0;[Red\]\(\#\,\#\#0\);\-"; text-align:right;}
.money { mso-number-format: "Currency"; text-align:right; }
HTML
<table>
<thead>
<tr>
<th filter="all">Animal</th>
<th filter="all">Food</th>
<th filter="all">Number</th>
<th filter="all">Date</th>
<th filter="all">Percent</th>
<th filter="all">Money</th>
</tr>
</thead>
<tbody>
<tr>
<td>Dog</td>
<td>Pizza</td>
<td class="account">-10.999</td>
<td class="date">12/13/2013 00:00:00</td>
<td class="percent">1</td>
<td class="money">.98</td>
</tr>
<tr>
<td>Cat</td>
<td>Hamburger</td>
<td class="account">0</td>
<td class="date">1/30/2012 00:00:00</td>
<td class="percent">.25</td>
<td class="money">0</td>
</tr>
<tr>
<td>Lizard</td>
<td>Guacamole</td>
<td class="account">988823.2311</td>
<td class="date">7/20/2013 00:00:00</td>
<td class="percent">.75</td>
<td class="money">-1000.5</td>
</tr>
</tbody>
<tfoot>
<tr>
<td ></td>
<td ></td>
<td class="account" formula="sum(c2:c4)"></td>
<td class="date" formula="max(d2:d4)"></td>
<td class="percent" formula="average(e2:e4)"></td>
<td class="money" formula="sum(f2:f4)"></td>
</tr>
</tfoot>
</table>
我使用以下查询文件将其拉入Excel中 [粘贴到记事本中并使用.iqy扩展名保存以运行] :
WEB
1
http://jsfiddle.net/CS98V/show/
Selection=1
Formatting=All
PreFormattedTextToColumns=False
ConsecutiveDelimitersAsOne=True
SingleBlockTextImport=False
DisableDateRecognition=False
DisableRedirections=False
我的问题是我是否以及如何将Excel主题样式应用于行?我理解如何使用CSS设置它们的样式,但我希望使用用户定义的主题来设置它们的样式;我希望将THEAD
设置为Excel的“标题4 ”样式,将TFOOT
设置为“总计”样式。
答案 0 :(得分:0)
您无法直接从JS Fiddle获取数据。您将需要仅包含HTML表格的页面,不包含iframe等。