今天又在打代码

导航

2020年6月8日 #

跨浏览器事件处理函数

摘要: 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title></title> 6 </head> 7 <body> 8 <input type="username" id="username" /> 9 <script> 阅读全文

posted @ 2020-06-08 19:28 今天又在打代码 阅读(161) 评论(0) 推荐(0) 编辑

鼠标事件分析(onmouseenter、onmouseover、onmouseleave和onmouoseout的区别)

摘要: 先上个代码 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset=" utf-8"> 5 <style> 6 #biggest,#biggestS { 7 height: 300px; 8 width: 300px; 9 background-col 阅读全文

posted @ 2020-06-08 17:37 今天又在打代码 阅读(500) 评论(0) 推荐(1) 编辑

JavaScript的事件处理程序(冒泡与捕获)

摘要: 这里主要记录一下三种事件处理程序 第一种是HTML事件处理程序,在写代码的时候经常会给一个元素添加某种事件,有可能是点击,或者鼠标移入移出,那么我们会这样写 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset=" utf-8"> 5 <style> 阅读全文

posted @ 2020-06-08 16:32 今天又在打代码 阅读(207) 评论(0) 推荐(0) 编辑

2019年10月8日 #

Exception in thread "main" java.sql.SQLException: Unknown initial character set index '255' received from server. Initial client character set can be forced via the 'characterEncoding' property.

摘要: 解决方法: ?useUnicode=true&characterEncoding=utf-8 在url路径上加上这句话 阅读全文

posted @ 2019-10-08 14:37 今天又在打代码 阅读(913) 评论(3) 推荐(0) 编辑