AppML, 당신은 HTML에서 HTML을 포함 할 수 있습니다.
HTML에서 HTML 포함
이것의 좋은 예는, 모든 HTML 페이지에서 표준 HTML 바닥 글을 포함하는 것입니다.
이 표준 바닥 글을 포함하는 파일의 예입니다 :
inc_footer.htm
<hr style="margin-top:10px;">
<p style="font-size:11px">2015© 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>
»스스로를보십시오