当前位置: 首页 > 网络学院 > 客户端脚本教程 > APPML > table
The <table> element provides a way to define the style and layout of the report table.
<table>元素提供了一个用于定义报告表样式和布局的方式。
Tip: If you only want to change the headers in the table you may define the new headers in the <sql> element (e.g. SELECT companyname AS Company,contactname AS [Contact person ] FROM Customers) instead of adding a <thead> element.
提示:如果你只希望改变表格中的标题,那么你可以在<sql>元素中定义全新的标题(举个例子来说,SELECT companyname AS Company,contactname AS [Contact person ] FROM Customers),而不需要添加<thead>元素。
The <table> element may have the following child elements:
<table>元素可以包含下面这些子元素:
Element 元素 | Description 描述 |
---|---|
thead | Defines a table header different from the default 定义一个与默认值不同的表格标题 |
tbody | Defines a table body different from the default 定义一个与默认值不同的表格主体 |
<?xml version="1.0" ?> <appml> <table> </htmlreport> </appml> |
View the output produced by the AppML HTML List Service
查看由AppML HTML 报告服务输出的结果