JavaWeb学习
茶屋Teahouse
一条正在成长的小咸鱼,请多指教
展开
-
使用Gson进行数据转换
注意:是否实例化Gson对象都可以实现转换的操作。原创 2023-04-24 15:34:17 · 860 阅读 · 0 评论 -
axios post方法提交数据后台显示null
使用axios技术向后台提交数据,选择post方式去提交.前端代码:axios.post(’/login’, {username: $("#username").val()}).then(function (response) {console.log(response);}).catch(function (error) {console.log(error);});后端代...原创 2020-03-24 11:35:45 · 566 阅读 · 0 评论 -
使用Jsp实现网页访问计数器
<% //判读是否为第一次启动,如果启动则添加属性 if((Integer) application.getAttribute("AccessCount") == 0){ application.setAttribute("AccessCount", 0); } //获得访问次数 ...原创 2019-02-06 19:55:12 · 7536 阅读 · 2 评论 -
js全选和反选
js代码 function testAllCheckbox() { //获得checkbox列表 var boxs = document.getElementsByName(&amp;quot;check&amp;quot;); //获得按钮的对象 var all = document.getElementById(&amp;quot;...原创 2019-03-01 17:19:02 · 284 阅读 · 0 评论 -
Js检验form表单数据
使用js检验form表单内数据,适用于大多数,比较基本。js代码 //封装方法,只能在差不多的input标签里使用 function check(input) { //获取元素对应的span标签 var span = document.getElementById(input.id + "Span"); ...原创 2019-03-01 19:39:45 · 840 阅读 · 0 评论