摘要: package com.bj.controller; import com.bj.entity.Area; import com.bj.service.AreaService; import com.bj.service.impl.AreaServiceImpl; import com.google 阅读全文
posted @ 2019-12-22 14:53 WhyNott 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 1 <%-- 2 Created by IntelliJ IDEA. 3 User: x1c 4 Date: 2019-12-22 5 Time: 10:04 6 To change this template use File | Settings | File Templates. 7 --%> 阅读全文
posted @ 2019-12-22 10:56 WhyNott 阅读(671) 评论(0) 推荐(0) 编辑
摘要: 1、使用Ajax完成功能的四个步骤: (1)创建XMLHttpRequest对象 (2)建立到服务器连接 (3)设置服务器在完成后的回调函数 (4)发送请求 其中在第二步会使用到open(),其中的参数分别代表数据提交方式(GET、POST),数据提交地址(URL),是否异步 如果使用GET方式没有 阅读全文
posted @ 2019-12-22 10:54 WhyNott 阅读(149) 评论(0) 推荐(0) 编辑