博主首页
上一页 1 2 3 4 5 6 7 ··· 44 下一页
摘要: SELECT t1.id,t1.eng_id,t1.work_type,t1.is_finish,t1.staff_id, t2.DESIGN_RESULT_ID,t2.SUBMIT_ID,t2.DEPT_TYPE from t_asse_design_work_todo t1 LEFT JOIN 阅读全文
posted @ 2024-02-29 13:47 笑~笑 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 文件的名称为 log4j.properties , 文件中的内容设置为: log4j.rootLogger=WARN, stdoutlog4j.appender.stdout=org.apache.log4j.ConsoleAppenderlog4j.appender.stdout.layout=o 阅读全文
posted @ 2024-02-29 11:15 笑~笑 阅读(11) 评论(0) 推荐(0) 编辑
摘要: Improperly specified VM option. To fix the problem, edit your JVM options andremove the options that are obsolete or not supported by the current vers 阅读全文
posted @ 2024-02-27 16:14 笑~笑 阅读(281) 评论(0) 推荐(0) 编辑
摘要: $("#jq1").css({"color": "black"}); 阅读全文
posted @ 2024-02-20 11:04 笑~笑 阅读(3) 评论(0) 推荐(0) 编辑
摘要: <audio id="ad" src="mp3/123.mp3"> </audio> function mp3To(){ let byId = document.getElementById("ad"); byId.play();//开始播放 } function mp3ToEnd(){ let b 阅读全文
posted @ 2024-02-20 10:27 笑~笑 阅读(121) 评论(0) 推荐(0) 编辑
摘要: $("#dl").click(function () { alert(123); }) 阅读全文
posted @ 2024-02-19 15:49 笑~笑 阅读(2) 评论(0) 推荐(0) 编辑
摘要: $.ajax({ url: "http://192.168.0.59:8081/t1/count", // 要发送请求的URL type: "GET", // 请求类型(默认为GET) dataType: "json", // 服务器返回的数据格式(默认为智能判断) data: {}, // 传递到 阅读全文
posted @ 2024-02-19 15:14 笑~笑 阅读(5) 评论(0) 推荐(0) 编辑
摘要: JS定时任务 1. 页面上2秒执行一次任务: setInterval(function(){ //执行任务 },2000); //取消执行 clearInterval(); 2.延时执行: JS都是延时执行的,没有多线程概念,碰到要使用全局变量的时候,要使用递归来实现全局变量数值变化! 3.页面上只 阅读全文
posted @ 2024-02-19 14:54 笑~笑 阅读(372) 评论(0) 推荐(0) 编辑
摘要: <body> <img id="img1" src="http://127.0.0.1:8081/t1/img" onclick="updateImg1()"> </body> <script> function updateImg1(){ $("#img1").attr("src","http:/ 阅读全文
posted @ 2024-02-19 14:53 笑~笑 阅读(62) 评论(0) 推荐(0) 编辑
摘要: public static void main(String[] args) { System.setProperty("java.awt.headless", "false"); SpringApplication.run(SpringBootMain.class, args); } 阅读全文
posted @ 2024-02-19 14:28 笑~笑 阅读(21) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 44 下一页