RUNOOB.COM
源代码:
点击运行
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="appml.css"> </head> <body> <h1>My First Web Application</h1> <div id="Place01"> <table id="Template01" class="appmltable"> <tr> <th>Customer</th> <th>City</th> <th>Country</th> </tr> <tr id="appml_row"> <td>#CustomerName#</td> <td>#City#</td> <td>#Country#</td> </tr> </table> </div> <script src="appml.js"></script> <script> var obj obj=new AppML("https://www.yuucn.com/code/try/appml/appml.php","../appml/Models/Customers.xml"); obj.run("Place01","Template01"); </script> </body> </html>
运行结果