使用 AppML,您可以在 HTML 中包含 HTML。
一个很好的例子是在所有 HTML 页面中包含标准 HTML 页脚。
这是包含标准页脚的文件示例:
<hr style="margin-top:10px;">
<p style="font-size:11px">2016© 91xjr. 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.91xjr.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>
亲自试一试»
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!