模拟题设计t

<!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 ;
            text-align: right;
        }
        #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>
        $().ready(function(){
            $("#submit input").click(function(){
                var prodName = $("#search div:nth-child(2) input").val();
                var errorMsg = "";
                if(prodName==""){
                    errorMsg = "产品名称中必须输入";
                    
                }
                else if(/\d/.test(prodName)){
                    errorMsg = "产品名称中不能有数字";
                }
                
                if(errorMsg != ""){
                    $("#error").text(errorMsg);
                }
                else{
                    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>

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>产品</title>
    <script src="js/jquery-3.1.1.min.js"></script>
    <style>
        #search div{
            
        }
    </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",
                    data:{name: $("#product").val()},
                    type:"POST",
                    dataType:"JSON",
                    success: function(jsonData){
                        //跟上面的data不一样
                        //JSON对象转成字符串打印出来
                        //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);
                        //考试可能出现的内容:继续为动态渲染的元素添加事件
                        $('.image').on("click",function(){
                            
                        });
                    }
                });
            });
        });
    </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
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值