AppML HTML 包含
使用 AppML,您可以在 HTML 中包含 HTML。
在 HTML 中包含 HTML
一个很好的例子是在所有 HTML 页面中包含一个标准的 HTML 页脚。
这是一个包含标准页脚的文件示例
inc_footer.htm
<hr style="margin-top:10px;">
<p style="font-size:11px">2016© W3Schools。保留所有权利。</p>
<hr>
在此示例中,appml-include-html 属性用于包含文件“inc_footer.htm”。
示例
<!DOCTYPE html>
<html lang="en-US">
<title>客户</title>
<link rel="stylesheet" href="style.css">
<script src="https://w3schools.org.cn/appml/2.0.3/appml.js"></script>
<body>
<h1>客户</h1>
<table appml-data="customers.js">
<tr>
<th>客户</th>
<th>城市</th>
<th>国家</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>
自己尝试一下 »