zoukankan      html  css  js  c++  java
  • 前台界面(1显示,2添加)

    @{
        ViewBag.Title = "Show";
    }
    <h2>Show</h2>
    <script src="~/Scripts/jquery-3.3.1.js"></script>
    <link href="~/Content/bootstrap.css" rel="stylesheet" />
    <span>产品列表</span>
    <table class="table table-bordered">
        <thead>
            <tr>
                <td>编号</td>
                <td>产品名称</td>
                <td>价格</td>
            </tr>
        </thead>
        <tbody id="Body"></tbody>
    </table>

    <span>订单列表</span>
    <table class="table table-bordered">
        <thead>
            <tr>
                <td>编号</td>
                <td>订单号</td>
                <td>总价</td>
            </tr>
        </thead>
        <tbody id="BodyDan"></tbody>
    </table>
    <script>
        $(function () {
            ShowChanPin();
        })
        function ShowChanPin() {
            $.ajax({
                url: "http://localhost:62506/api/ChanPin",
                DataType: "json",
                type: "get",
                success: function (i) {
                    ShowDingDan();
                    $("#Body").empty();
                    var line;
                    $(i).each(function () {
                        line = '<tr>' +
                            '<td>' + this.Id + '</td>' +
                            '<td>' + this.Name + '</td>' +
                            '<td>' + this.Money + '</td>' +
                            '</tr>';
                        $("#Body").append(line);
                    })
                }
            })
        }
            function ShowDingDan() {
            $.ajax({
                url: "http://localhost:62506/api/DingDan",
                DataType: "json",
                type: "get",
                success: function (i) {
                    $("#BodyDan").empty();
                    var line;
                    $(i).each(function () {
                        line = '<tr>' +
                            '<td>' + this.Id + '</td>' +
                            '<td>' + this.DanHao + '</td>' +
                            '<td>' + this.SumMoney + '</td>' +
                            '</tr>';
                        $("#BodyDan").append(line);
                    })
                }
            })
        }
    </script>
  • 相关阅读:
    MySQL的max()函数使用时遇到的小问题
    scp命令需要指定端口时要紧跟在scp后
    linux系统之间基于密钥对免输入密码登陆
    c++的引用用法
    预测模型
    mysql出现ERROR 1366 (HY000):的解决办法
    R语言可视化--颜色
    R语言可视化--ggplot函数
    R语言可视化--qplot函数
    R语言可视化二
  • 原文地址:https://www.cnblogs.com/gc1229/p/13139933.html
Copyright © 2011-2022 走看看