最新的Web开发教程
 

AppML HTML包括


随着AppML,你可以在HTML中包括HTML。


在HTML中包含HTML

这方面的一个很好的例子,就是在您所有的HTML网页标准的HTML页脚。

这是一种含有一个标准的页脚中的文件的一个例子:

inc_footer.htm

<hr style="margin-top:10px;">
<p style="font-size:11px">2015&copy; w3ii. 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="http://www.w3ii.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>
试一试»