|
300金钱
從Lab08_3a.php 拿資料在Lab08_3a.html的<tbody></tbody> 內顯示結果
Lab08_3a.php
- {"part":[{"item":"Motherboard","manufacturer":"ASUS","model":"P3B-F","cost":" 123.00"},{"item":"Video Card","manufacturer":"ATI","model":"All-in-Wonder Pro","cost":" 160.00"},{"item":"Sound Card","manufacturer":"Creative Labs","model":"Sound Blaster Live","cost":" 80.00"},{"item":" inch Monitor","manufacturer":"LG Electronics","model":" 995E","cost":" 290.00"}]}
复制代码
Lab08_3a.html
- <html>
- <head>
- <title>Lab08 Challenge Task</title>
- <link rel="stylesheet" href="Lab08_Q3_layout.css"/>
- <script src="/jquery/jquery-2.1.4.js"></script>
- <script>
- $(document).ready( function() {
- (function() {
- $.ajax({
- type: 'POST',
- url: 'http://localhost/lab08/Lab08_3a.php',
- dataType: 'json',
- success: function(result) {
- xxxxxx
- }
- });
- });
- });
- </script>
- </head>
- <body>
- <h2>Table of Computer Parts</h2>
- <table id="tableID" border="1">
- <thead>
- <tr>
- <th>Item</th>
- <th>Manufacturer</th>
- <th>Model</th>
- <th>Cost in $</th>
- </tr>
- </thead>
- <tbody>
-
- </tbody>
- </table>
- </body>
- </html>
复制代码 |
|