码迷,mamicode.com
首页 > 其他好文 > 详细

最近没写什么---更新下,在家没键盘就偷懒了

时间:2020-01-21 23:52:09      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:element   获取   ntb   length   query   div   pen   修改   create   

技术图片

 

 代码:

主要用jQuery修改,还没实现写入,只是显示出来

 

 

<script>
    var carmassage=[]
    $.ajax({
        url: "/businfo",
        type:"GET",
        success: function(response){
            carmassage = response;
            console.log(carmassage)
            //查看到获取信息成功
            //把空闲的司机显示出来,可以安排

            for(var i=0;i<carmassage.length;i++) {
                var option = document.createElement("option");
                document.getElementById("cardriverselect").appendChild(option);
                option.value = i + 1; //每个option的位置
                option.text = carmassage[i].busdriver;//每个Option的值
            }
            return;
        }
    });
</script>

最近没写什么---更新下,在家没键盘就偷懒了

标签:element   获取   ntb   length   query   div   pen   修改   create   

原文地址:https://www.cnblogs.com/Tqin/p/12227206.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!