web实验

input:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>产品录入</title>
    <link href="css/input.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="search">
    <div>产品名称</div>
    <div><input type="text" placeholder="请输入产品名称"></div>
</div>
<div id="error"></div>
<div id="submit"><input type="button" value="录入"></div>
<script src="js/jquery-3.1.1.min.js"></script>
<script>
    $(function() {
        $('#submit input').on('click', function() {
            let temp = /\d/;

            if ($('#search input').val().length == 0) {
                $('#error').html('用户名不能为空');
            } else if (temp.test($('#search input').val())) {
                $('#error').html('输入不能有数字');
            } else {
                location.href = 'product.html';
            }
        })
    })
</script>
</body>
</html>

product:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>产品</title>
</head>
<style>
    * {
        margin: 0;
        padding: 0;
    }

    table {
        border-collapse: collapse;
    }

    th {
        height: 30px;
        text-align: center;
        line-height: 30px;
    }

    td {
        height: 100px;
        text-align: center;
        line-height: 100px;
    }

    img {
        width: 100px;
        height: 100px;
    }

    th:nth-child(1) {
        width: 100px;
    }

    th:not(:nth-child(1)) {
        width: 150px;
    }

    a {
        color: #00ff00;
    }

    a:hover {
        color: #ff0000;
    }

    tr td:nth-child(4) {
        background-color: #ffffd0;
    }
</style>
<body>
<div><input type="text" id="product" placeholder="请输入产品名称"> <input type="button" id="search" value="搜索"></div>
<div id="product">
    <table border="1">
        <thead>
            <tr>
                <th></th>
                <th>品牌</th>
                <th>型号</th>
                <th>价格</th>
            </tr>
        </thead>
        <tbody>
        </tbody>
    </table>
</div>
</body>
<script src="js/jquery-3.1.1.min.js"></script>
<script>
    $(function() {
        $('#search').on('click', function() {
            $.post(
            'http://43.136.217.18:8081/getProduct',
            {name: $('#product').val()},
            function(res) {
                console.log(res.data);

                for (let i = 0; i < res.data.length; i ++) {
                    console.log(res.data[i]);

                    let temp = $(`
                        <tr>
                            <td><img src="http://43.136.217.18:8081/img/${res.data[i].image}"></td>
                            <td>${res.data[i].brand}</td>
                            <td><a href="http://43.136.217.18:8081/img/${res.data[i].image}" target="_blank">${res.data[i].model}</a></td>
                            <td>${res.data[i].price}</td>
                        </tr>
                    `);

                    temp.appendTo('tbody');
                }
            }, 
            'json'
            );
        })
    })
</script>
</html>

input,css:

div {
    font-size: 14px;
}
#search input {
    width: 150px;
}

* {
    margin: 0;
    padding: 0;
}

#search div {
    display: inline-block;
}

#search div:nth-child(1) {
    width: 100px;
    text-align: right;
    margin-right: 10px;
}

#submit input {
    width: 267px;
}

#error {
    color: #ff0000;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值