Neueste Web-Entwicklung Tutorials
 

AppML HTML Enthält


Mit AppML, können Sie HTML in HTML enthalten.


Einschließlich HTML in HTML

Ein gutes Beispiel hierfür ist eine Standard-HTML-Fußzeile in all HTML-Seiten enthalten.

Dies ist ein Beispiel für eine Datei, die eine Standard-Fußzeile enthält:

inc_footer.htm

<hr style="margin-top:10px;">
<p style="font-size:11px">2015&copy; w3ii. All rights reserved.</p>
<hr>

In diesem Beispiel wird das appml-include-html wird Attribut verwendet , um die Datei zu schließen "inc_footer.htm" :

Beispiel

<!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>
Versuch es selber "