博客列表 >在线查询系统

在线查询系统

艾克的博客
艾克的博客原创
2017年12月22日 19:24:061849浏览

O8(V[(KWVTWOO5AG~H9HJ%X.png

<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <script src="jquery-3.2.1.js"></script>
   <title>在线查询</title>
   <style>
       body {
           margin: 0;
           padding: 0;
           background-color: blanchedalmond;
       }
       h2 {
           width: 600px;
           height: 50px;
           margin: 0 auto;
           text-align: center;
       }


       lable {
           font-size: 1.2em;
           /*float: left;*/
           /*background-color: red;*/
display: block;
           float: left;

       }
       input {
           width: 200px;
           height: 30px;
           font-size: 30px;
           display: block;
           float: left;
           /*background-color: black;*/
}
       button {
           margin-left:0px;
           margin-top: 5px;
           width: 300px;
           height: 30px;
       }
       .top {
           width: 500px;
           height: 100px;
           /*background-color: red;*/
line-height: 100px;
           margin-left: 160px;
           text-align: left;
       }
   </style>
</head>
<body>
       <h2>根据姓名查询手机号码</h2>
       <p><lable for="username">请输入要查询姓名:</lable><input type="text" id="username" name="username"></p>
       </div>
       <button>点击查询</button>
       <div class="top"></div>
       <p></p>
       <script>
           $('button').on('click',function () {
               var username = $('input:text').val()
               $.ajax({
                   type:'GET',
                   url:'zxcx.json',
                   data: {username:username},
                   dataType:'json',
                   success: function (data) {
                       $.each(data, function (key, value) {
                           if (key == username) {
                               $('div').html(value)
                           }
                       })
                   }
               })
           })
       </script>
</body>
</html>

json图片

N{GFSH%TZMKK378[`SGUW04.png

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议