上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 59 下一页
摘要: https://blog.csdn.net/m0_47759019/article/details/121874564 阅读全文
posted @ 2022-08-01 22:14 红尘沙漏 阅读(15) 评论(0) 推荐(0) 编辑
摘要: JDK1.5引入了新的类型——枚举。在 Java 中它虽然算个“小”功能,却给我的开发带来了“大”方便。 大师兄我【大师兄】又加上自己的理解,来帮助各位理解一下。 用法一:常量 在JDK1.5 之前,我们定义常量都是: public static final.... 。现在好了,有了枚举,可以把相关 阅读全文
posted @ 2022-07-11 14:00 红尘沙漏 阅读(59) 评论(0) 推荐(0) 编辑
摘要: 原文地址:http://t.zoukankan.com/jiangwz-p-9030943.html 可以使用配置文件配置,也可以使用Bean在启动类中配置 配置文件为application.properties格式: spring.http.multipart.maxFileSize=10Mb s 阅读全文
posted @ 2022-07-05 17:09 红尘沙漏 阅读(3083) 评论(0) 推荐(1) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title></head> <body> <form action="/upload" method="post" enctype="multip 阅读全文
posted @ 2022-07-05 16:29 红尘沙漏 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 原文地址:https://blog.csdn.net/qq_37657093/article/details/122704647 SpringBoot 使用定时器的3种方式 1、使用@Scheduled注解定义 @Component public class SimpleSchedule { pri 阅读全文
posted @ 2022-07-04 09:01 红尘沙漏 阅读(2814) 评论(0) 推荐(1) 编辑
摘要: https://blog.csdn.net/a_running_wolf/article/details/50833462 阅读全文
posted @ 2022-06-21 14:44 红尘沙漏 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 控制div的显示与隐藏的语法如下: $("#id").show()表示display:block, $("#id").hide()表示display:none; $("#id").toggle()切换元素的可见状态。如果元素是可见的,切换为隐藏的;如果元素是隐藏的,切换为可见的 $("#id").c 阅读全文
posted @ 2022-06-17 13:53 红尘沙漏 阅读(1008) 评论(0) 推荐(0) 编辑
摘要: <input id="666" type="button" >点击</input> <script type="text/javascript"> $(function(){ $("#666").unbind("mousedown").bind("mousedown", function (even 阅读全文
posted @ 2022-06-16 15:36 红尘沙漏 阅读(859) 评论(0) 推荐(0) 编辑
摘要: <input type="button" ondblclick="test()">点击</input> <script type="text/javascript"> function test(){ alert("双击事件!!!!!!!!"); } </script> 阅读全文
posted @ 2022-06-16 15:00 红尘沙漏 阅读(2138) 评论(0) 推荐(0) 编辑
摘要: 方式1 <div id="tiaohuanzuowei"> 123 </div> <script type="text/javascript"> layer.open({ content: $("#tiaohuanzuowei"), btn: ['确定', '关闭'], title:'调换座位', 阅读全文
posted @ 2022-06-13 14:52 红尘沙漏 阅读(494) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 59 下一页