AppML HTML 包含

使用 AppML,您可以在 HTML 中包含 HTML。


在 HTML 中包含 HTML

一个很好的例子是在你的所有 HTML 页面中包含一个标准的 HTML 页脚。

这是一个包含标准页脚的文件示例:

inc_footer.htm

<hr style="margin-top:10px;">
<p style="font-size:11px">2016&copy; W3Schools. All rights reserved.</p>
<hr>

在本例中,appml-include-html 属性用于包含文件"inc_footer.htm":

实例

<!DOCTYPE html>
<html lang="en-US">

<title>Customers</title>
<link rel="stylesheet" href="style.css">
<script src="https://www.w3ccoo.com/appml/2.0.3/appml.js"></script>

<body>

<h1>Customers</h1>
<table appml-data="customers.js">
<tr>
  <th>Customer</th>
  <th>City</th>
  <th>Country</th>
</tr>
<tr appml-repeat="records">
  <td>{{CustomerName}}</td>
  <td>{{City}}</td>
  <td>{{Country}}</td>
</tr>
</table>

<div appml-include-html="inc_footer.htm"></div>

</body>
</html>
亲自试一试 »