最新的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>
試一試»