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

 

 代码:

主要用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>
posted @ 2020-01-21 22:19  代码是肥钦喔  阅读(135)  评论(0编辑  收藏  举报