Fork me on Gitee
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 20 下一页
摘要: #邮箱常用端口及协议 sohu.com: POP3服务器地址:pop3.sohu.com(端口:110) SMTP服务器地址:smtp.sohu.com(端口:25) 126邮箱: POP3服务器地址:pop.126.com(端口:110) SMTP服务器地址:smtp.126.com(端口:25) 阅读全文
posted @ 2018-10-30 09:58 明叶师兄。 阅读(4239) 评论(0) 推荐(0) 编辑
摘要: JS制作二级联动 <!DOCTYPE html PUBLIC " //W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1 transitional.dtd" 设置 .div { webkit box 阅读全文
posted @ 2018-10-30 09:48 明叶师兄。 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 使用JQuery对页面进行绑值 <!DOCTYPE html function click_test1() { var name2 = "张三"; alert("我是从数据库来的:" + name2); $(" id1").val(name2); } function click_test2() { 阅读全文
posted @ 2018-10-30 09:41 明叶师兄。 阅读(588) 评论(0) 推荐(0) 编辑
摘要: IDEA 报错记录 1. Process finished with exit code 0 这种主要是配了默认的 Tomcat ,然后又配置了外部的 Tomcat。解决办法,注释掉默认的: org.springframework.boot spring boot starter tomcat pr 阅读全文
posted @ 2018-10-30 09:35 明叶师兄。 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 论文格式 "参考网址" 阅读全文
posted @ 2018-10-10 13:24 明叶师兄。 阅读(115) 评论(0) 推荐(0) 编辑
摘要: Spring Boot 报错记录 1. 由于新建的项目没有配置数据库连接启动报错,可以通过取消自动数据源自动配置来解决 解决方案1: @SpringBootApplication(exclude = DataSourceAutoConfiguration.class) //@SpringBootAp 阅读全文
posted @ 2018-10-09 18:27 明叶师兄。 阅读(301) 评论(0) 推荐(0) 编辑
摘要: 日常报错记录 java.lang.IllegalStateException:Optional long parameter 'id' is present but cannot be translated into a null value due to being declared as a p 阅读全文
posted @ 2018-09-30 16:19 明叶师兄。 阅读(267) 评论(0) 推荐(0) 编辑
摘要: #java中子类继承父类程序执行顺序 FatherTest.java public class FatherTest { private String name; public FatherTest() { System.out.println("--父类的无参构造函数--"); } public 阅读全文
posted @ 2018-09-27 14:07 明叶师兄。 阅读(3520) 评论(0) 推荐(0) 编辑
摘要: #AJAX请求,返回json进行页面绑值 后台 controller @RequestMapping(value = "backjson.do",method=RequestMethod.POST, produces = "application/json;charset=UTF-8") @Resp 阅读全文
posted @ 2018-09-26 17:21 明叶师兄。 阅读(989) 评论(0) 推荐(0) 编辑
摘要: js对div取值与赋值 因为JavaScript运行时,id="test1" 的那个div元素可能还没解析和加载,js加载是有顺序的。只需把 js 整个搬到 后面即可。 还有一个特别容易犯的毛病,页面引入 jQuery ,如果其他 js 要使用,需要放在 jQuery 之后,否则不能使用。 测试案例 阅读全文
posted @ 2018-09-26 11:26 明叶师兄。 阅读(47881) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 20 下一页