AppML 包含 HTML
使用 AppML,可以在 HTML 中包含 HTML。
在 HTML 中包含 HTML
下面是一个很好的例子,在所有 HTML 页面中包含一个标准的 HTML 页脚。
这是一个包含标准页脚的文件实例:
inc_footer.html
<hr style="margin-top:10px;">
<p style="font-size:11px">2022© cankaoshouce.com All rights reserved.</p>
<hr>
在本例中,appml include html 属性用于包含文件 "inc_footer.html":
实例
<!DOCTYPE html>
<html>
<title>Customers</title>
<link rel="stylesheet" href="/example/appml/style.css">
<script src="https://cankaoshouce.com/js/appml/appml.js"></script>
<body>
<h2>Customers</h2>
<table appml-data="/example/appml/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.html"></div>
</body>
</html>