tr拼接到Table

来源:互联网 发布:中行中银淘宝信用卡 编辑:程序博客网 时间:2024/05/06 10:23
<script type="text/javascript">    function getProducts() {        $.getJSON("api/products",            function (data) {                $('#products').empty(); // Clear the table body.                // Loop through the list of products.                $.each(data, function (key, val) {                    // Add a table row for the product.                    var row = '<td>' + val.Name + '</td><td>' + val.Price + '</td>';                    $('<tr/>', { text: row })  // Append the name.                        .appendTo($('#products'));                });            });        }        $(document).ready(getProducts);</script>
0 0