上一页 1 ··· 5 6 7 8 9 10 11 12 13 下一页
摘要: 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 阅读(6297) 评论(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 阅读(2294) 评论(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 阅读(592) 评论(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 阅读(152) 评论(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 阅读(701) 评论(0) 推荐(0) 编辑
摘要: 一:@RequestBody和@RequestParam区别 @RequestParam用来处理Content-Type: 为 application/x-www-form-urlencoded编码的内容。(Http协议中,如果不指定Content-Type,则默认传递的参数就是applicatio 阅读全文
posted @ 2020-11-10 10:59 图图小淘气_real 阅读(285) 评论(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 阅读(501) 评论(0) 推荐(0) 编辑
摘要: HTML: <div class="main"> <ul class="tab"> <li> <span style="width: 36%;margin-right: 1%;">润泽小区噪声点</span> <span style="width: 20%;margin-right: 1%;">10 阅读全文
posted @ 2020-11-01 15:02 图图小淘气_real 阅读(129) 评论(0) 推荐(0) 编辑
摘要: ::-webkit-scrollbar { width: 5px; //对垂直流动条有效 height: 10px; //对水平流动条有效 } //定义滚动条的轨道颜色、内阴影及圆角 ::-webkit-scrollbar-track{ -webkit-box-shadow: inset 0 0 6 阅读全文
posted @ 2020-11-01 14:57 图图小淘气_real 阅读(87) 评论(0) 推荐(0) 编辑
摘要: web service(SOAP)与HTTP接口的区别:https://www.cnblogs.com/leeego-123/p/10404631.html http是一种网络协议,而webservice是一种两个应bai用程序之间实现通信的du解决方案。但是两者之间是有联系的,Webservice 阅读全文
posted @ 2020-10-29 21:45 图图小淘气_real 阅读(571) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 下一页