最新の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>
»それを自分で試してみてください