最适合网络开发者的网站
AppML。W3Schools 英文版。初学者课程

尿素

应用机器学习 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://www.w3schools.com/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>{{顾客姓名}}</td>
<td>{{城市}}</td>
<td>{{国家}}</td>
</tr>
</table>

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

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