- 博客(14)
- 收藏
- 关注
转载 jpa 踩坑 SQLGrammarException
SQLGrammarException could not execute query cause by not found column id ,, id指的是,返回的结果没有Id 封装结果集出错,,不是全部字段时应该用Object 接收,,不能再用对象 单个字段单条记录时,返回类型最好用对应字段的类型或者Object。 多个字段时,不论是多条记录还是单条记录,返...
2019-09-23 12:29:00 534
转载 es 3.0 、es 5.0 、es 6.0
es 5.0 的严格模式“use strict” /在页面最顶端写启动全局 es 5.0 严格模式 为什么使用字符串可以 向下兼容 ,,不会报错可以写在局部方法中,推荐使用 (例如 不再兼容es 3.0 不规则的语法 ,,使用es 5 的新语法 1、arguments.callee , 2、不再兼容 with(){} 语法 3、未经声明的变量不在允许...
2019-09-22 20:48:00 154
转载 this 、typeof、false、parseInt()、this、arguments、Array和object判断
typeoftypeof (undefined) 不会报错undefined object Number boolean function String 返回值为字符串类型false0 、false 、“”、undefined、null、NaN除了以上六种都为truenull == undefined truenull === undefined f...
2019-09-22 16:17:00 266
转载 document操作
var elements = document.getElementsByClassName("item");console.log(elements)elements[0].classList.add("active");转载于:https://www.cnblogs.com/guyuedashu/p/11533613.html
2019-09-17 14:38:00 335
转载 struts使用
下载文件 <action name="download" class="thirdIssueAction" method="getDownloadPdf"> <result name="fileNotFound">/error-404-file.jsp</result> <res...
2019-09-17 11:19:00 222
转载 js隐式类型转换,预编译、递归、作用域,作用域链、闭包、立即执行函数、继承圣杯模式...
隐式类型转换调用Number()当有运算符(加减乘除,求余)时,会调用Number()转为数字再运算,除了 加 当 有字符串时就变身成拼接Boolean();String();typeof()string返回的类型预编译 在<script>里面的代码,进行预编译,将变量声明,,函数声明提高在逻辑的前面;执行代码时在GO(即window对象)中取出值,...
2019-09-15 16:58:00 111
转载 三角形的实现和盒模型、层模型、浮动模型、定位、权重、margin问题
相邻的border会平分所占的区域,出现一个斜线, .my_triangle{ width: 10px; height: 10px; background-color: blue; border-width: 100px ; border-style: s...
2019-09-13 16:23:00 169
转载 js 阻止事件
event.stopPropagation();//阻止事件冒泡 ,可阻止父类事件的发生 event.preventDefault();//阻止默认行为 如A标签转载于:https://www.cnblogs.com/guyuedashu/p/11512050.html...
2019-09-12 15:16:00 1254
转载 git的使用
常用命令git init 把当前项目作为一个仓库git status 展示当前仓库下的文件git add -A 提交所有文件到仓库(ps:除过在gitignore)只是在缓冲区里并不是commitgit commit -m`v1.0-hello 提交至仓库 -m为描述gitignore文件忽略规则HELP....
2019-09-07 20:50:00 78
转载 实现div里面有placeholder形式
样式中设置content为元素的data-值 p{ color: deepskyblue; } p:before{ content: attr(data-beforeContent); color: darkred; }然后js修改 $('p').on('click',functi...
2019-09-04 14:42:00 1207
转载 js拼接HTML onclick传参
字符串1 使用" 。比如: ("'+key+'")例:htmlStr = htmlStr + '<span><img src="'+src+'"/><i onclick="deleteFile("'+key+'");" class="fa fa-minu...
2019-09-04 09:56:00 2295
转载 MySQL 命令
连接:查看当前处于连接未关闭状态的进程列表 ps:若以root帐号登录,你能看到所有用户的当前连接。如果是其它普通帐号,只能看到自己占用的连接。mysql> show full processlist;查看最大连接数mysql> show global variables like 'max_connections';设置最大连接数mysql> set g...
2019-09-03 20:17:00 88
转载 file对象的获取 radio值的获取
jq $("#hiddenFile").get(0).filesjs this.files;获取radio的值$('input:radio:checked').val();$("input[type='radio']:checked").val();$("input[name='new_type']:checked").val();取消/选中所...
2019-09-02 10:41:00 135
转载 代理
代理(Proxy)现在要扩展eat方法的功能,静态代理(方法的代理)IPeople接口有eat()方法public interface IPeople{ void eat(); }people类实现IPeoplepublic class People implements IPeople { ...
2019-09-01 22:03:00 81
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人