web期末模拟

input.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>产品录入</title>
    <link href="css/input.css" rel="stylesheet" type="text/css" />
    <style>
        #search div:nth-child(1){
            float: left;
            width: 100px;
            margin-right: 10px;
        }
        #search div:nth-child(2){
            width: 150px;
            margin-left: 110px;
        }
        #submit input{
            width: 268px;
            margin-top: 10px;
        }
        #error{
            color: #ff0000;
        }
    </style>
    <script src="js/jquery-3.1.1.min.js"></script>
    <script>
        //所有的jquery代码从ready开始
        $().ready(function(){
            $("#submit input").click(function(){
                // 执行验证
                var errorMsg = "";
                var prodName = $("#search div:nth-child(2) input").val();
                if (prodName == ""){
                    errorMsg = "产品名称必须输入";
                }
                // 正则表达式 /\d/ test()是测试有没有
                else if (/\d/.test(prodName)){
                    errorMsg = "产品名称中不能有数字";
                }
                if (errorMsg != ""){
                    // 向error里面
                    $("#error").text(errorMsg);
                }
                else{
                    // 修改浏览器上的url
                    document.location.href = "product.html";
                }
            })
        })
    </script>
</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>
</body>
</html>

product.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>产品</title>
    <style>
        #search tr{
            height: 100px;
        }
        #search tr:nth-child(1){
            height: 30px;
        }
        #search td{
            align-items: center;
        }
    </style>
    <script src="js/jquery-3.1.1.min.js"></script>
    <script>
        $().ready(function(){
            $("#search").click(function(){
                $.ajax({
                    url:"http://43.136.217.18:8081/getProduct",
                    // 从product里面拿数据
                    data: {name: $("#product").val()},
                    type: "POST",
                    dataType: "JSON",
                    success: function(jsonData){
                        //document.write(JSON.stringify(jsonData))
                        var html = "<table>";
                        html += "<tr><th>&nbsp;</th><th>品牌</th><th>型号</th><th>价格</th></tr>";
                        for(var i in jsonData.data){
                        var item =jsonData.data[i];
                        html+="<tr>";
                        html+="<td><img src='http://43.136.217.18:8081/img/"+item.image+"'></td>";   
                        html+="<td>"+item.brand+"</td>";
                        html+="<td><a href='http://43.136.217.18:8081/img/"+item.image+"'>"+item.model+"</a></td>";
                        html+="<td>"+item.price+"</td>";
                        html+="</tr>";
                    }
 
                        html += "</table>";
                        $("div:last-child").html(html);
                    }
                })
            })
        })
    </script>
</head>
<body>
    <div><input type="text" id="product" placeholder="请输入产品名称"> <input type="button" id="search" value="搜索"></div>
    <div id="product"></div>
</body>
</html>

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值