上一页 1 ··· 5 6 7 8 9 10 11 12 13 14 下一页
摘要: 1、$.get $.get()方法使用GET方式来进行异步请求,它的语法结构为: $.get( url [, data] [, callback] ) 解释一下这个函数的各个参数: url:string类型,ajax请求的地址。 data:可选参数,object类型,发送至服务器的key/value 阅读全文
posted @ 2020-11-13 16:36 图图小淘气_real 阅读(106) 评论(0) 推荐(0) 编辑
摘要: Java: package com.xieh; import java.text.DecimalFormat; public class MoneyFormat { public static void main(String args[]) { double n = 2000000.1458; D 阅读全文
posted @ 2020-11-13 09:26 图图小淘气_real 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 首先我们应该清楚这个概念:这里的有序和无序不是指集合中的排序,而是是否按照元素添加的顺序来存储对象。 list是按照元素的添加顺序来存储对象的,因此是有序的。他的实现类ArrayList、LinkedList、Vector都是有序的。 Map是无序的,它的存储结构是哈希表<key,value>键值对 阅读全文
posted @ 2020-11-12 21:59 图图小淘气_real 阅读(291) 评论(0) 推荐(0) 编辑
摘要: import java.awt.geom.Point2D; import java.util.ArrayList; import java.util.List; public class regionUtil { private static double EARTH_RADIUS = 637813 阅读全文
posted @ 2020-11-12 14:50 图图小淘气_real 阅读(6607) 评论(0) 推荐(0) 编辑
摘要: 修改input框里的字体或颜色 /* WebKit browsers */ input::-webkit-input-placeholder { color: #C0C0C0; font-size: 14px; } /* Mozilla Firefox 4 to 18 */ input:-moz-p 阅读全文
posted @ 2020-11-12 11:47 图图小淘气_real 阅读(2319) 评论(0) 推荐(0) 编辑
摘要: user-select的详细用法 做网页的时候,有些文字我们需要能被选中,有些我们不要能被选中,那么这就需要用到一个css属性了,那就是 user-select user-select: none|auto|text|contain|all; /*firefox浏览器*/ -moz-user-sel 阅读全文
posted @ 2020-11-12 11:18 图图小淘气_real 阅读(622) 评论(0) 推荐(0) 编辑
摘要: 左侧位移 :<< 表示这个数乘以2的n次方 右侧位移:>> 表示这个数除以2的n次方 y<<1 等价于 y*(Math.pow(2, 1)) y<<2 等价于 y*(Math.pow(2, 2)) y<<3 等价于 y*(Math.pow(2, 3)) y<<4 等价于 y*(Math.pow(2, 阅读全文
posted @ 2020-11-10 21:31 图图小淘气_real 阅读(155) 评论(0) 推荐(0) 编辑
摘要: Springmvc 通过return "redirect:" 实现重定向 重定向的状态码301 302 301,302 都是HTTP状态的编码,都代表着某个URL发生了转移,不同之处在于: 301 redirect: 301 代表永久性转移(Permanently Moved)。 302 redir 阅读全文
posted @ 2020-11-10 11:02 图图小淘气_real 阅读(741) 评论(0) 推荐(0) 编辑
摘要: 一:@RequestBody和@RequestParam区别 @RequestParam用来处理Content-Type: 为 application/x-www-form-urlencoded编码的内容。(Http协议中,如果不指定Content-Type,则默认传递的参数就是applicatio 阅读全文
posted @ 2020-11-10 10:59 图图小淘气_real 阅读(288) 评论(0) 推荐(0) 编辑
摘要: Multiple annotations found at this line:- javax.servlet.jsp.JspException cannot be resolved to a type- Attribute (width) is obsolete. Its use is disco 阅读全文
posted @ 2020-11-04 09:03 图图小淘气_real 阅读(533) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 14 下一页