编辑下面的代码:【加编码】
<html lang="en-US"> <head> <meta charset="utf-8"> <link rel="stylesheet" href="/demo/appml.css"> </head> <body> <h1>Customers</h1> <div id="List01"></div><br> <div id="Orders01"></div><br> <table id="Template01" class="appmltable" style="width:100%;display:none"> <tr> <th>Customer</th> <th>City</th> <th>Country</th> <th></th> </tr> <tr id="appml_row"> <td>#CustomerName#</td> <td>#City#</td> <td>#Country#</td> <td><a href="#" onclick='openOrders("#CustomerID#");return false;'>Orders</a></td> </tr> </table> <table id="Template02" class="appmltable" style="width:100%;display:none"> <tr> <th>Customer</th> <th>Date</th> <th>Salesperson</th> <th>Shipper</th> </tr> <tr id="appml_row"> <td>#CustomerName#</td> <td>#OrderDate#</td> <td>#Salesperson#</td> <td>#ShipperName#</td> </tr> </table> <script src="/demo/appml.js"></script> <script> var customers,orders; customers=new AppML("../appml/appml.php","../appml/Models/Customers.xml"); customers.run("List01","Template01"); function openOrders(id) { orders=new AppML("appml.phpx","Models/Orders"); orders.setQuery("orders.customerid",id); orders.commands=false; orders.run("Orders01","Template02"); } </script> </body> </html>
结果: 【此窗口】 帮助?
Try it Yourself - © 自强学堂