BootWiki教程网
源代码:
点击运行
<!DOCTYPE html> <html lang="en-US"> <head> <meta charset="utf-8"> <link href="appml.css" rel="stylesheet"> </head> <body> <h1>Customers</h1> <div id="Form01"></div><br> <div id="List01"></div><br> <table class="appmltable" id="Template01" style="width:100%;display:none"> <tr> <th></th> <th>Customer</th> <th>City</th> <th>Country</th> </tr> <tr id="appml_row"> <td onclick="openForm('#CustomerID#')" style="cursor:pointer"> <img src="../images/appmlPlus.png"></td> <td>#CustomerName#</td> <td>#City#</td> <td>#Country#</td> </tr> </table> <script src="appml.js"></script> <script> var customers,customerForm; customers=new AppML("http://www.bootwiki.com/try/appml/appml.php","../appml/Models/Customers.xml"); customers.run("List01","Template01"); function openForm(id) { customerForm=new AppML("http://www.bootwiki.com/try/appml/appml.php","Models/Customers"); customerForm.displayType="form"; customerForm.run("Form01","",id); } </script> </body> </html>
运行结果