摘要: var index = parent.layer.getFrameIndex(window.name); //获取窗口索引 parent.layer.close(index); // 关闭当前layer层 阅读全文
posted @ 2021-08-05 10:31 唏嘘- 阅读(468) 评论(0) 推荐(0) 编辑
摘要: 1、新项目再Idea里面启动的时候, 有的时候报错Error running ‘Application’: Command line is too long. Shorten command line for Application or aalso for Spring Boot default 阅读全文
posted @ 2021-08-04 11:56 唏嘘- 阅读(3333) 评论(0) 推荐(0) 编辑
摘要: 直接复写th、td的样式,样式代码如下(外联): .table th, .table td { text-align: center; vertical-align: middle!important; } 阅读全文
posted @ 2021-08-04 11:45 唏嘘- 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 1、判断一个数组中是否包含某元素 arr.indexOf(val) > -1 // 1包含 -1不包含 arr.includes(val) // ES7 true 包含 false 不包含 2、判断一个字符串中是否包含某字符 str.indexOf(res) != -1 // str 存在的字符串( 阅读全文
posted @ 2021-08-04 11:37 唏嘘- 阅读(1409) 评论(0) 推荐(0) 编辑
摘要: 1、使用git bash替换原有terminal 2、在Idea中配置Maven,如下图 3、配置maven用户变量 4、然后重启Idea,看在terminal中是否能执行mvn命令,如果还是不能执行,则执行如下步骤 阅读全文
posted @ 2021-08-04 11:12 唏嘘- 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 1、设置字体颜色 function rowStyle(row, index) { var style = {}; style={css:{'color':'#ed5565'}}; return style; } 2、设置行背景颜色 function rowStyle(row, index) { va 阅读全文
posted @ 2021-08-04 10:22 唏嘘- 阅读(891) 评论(0) 推荐(0) 编辑
摘要: 1、$.each() $.each(object,function(index,e){ ... }); object --> 需要遍历的对象或数组 index --> 索引 e --> 循环的每个元素 示例一: let temp = ""; $.each(selected, function (in 阅读全文
posted @ 2021-08-04 09:24 唏嘘- 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 方法一:使用subString 指定索引号,截取字符串: 将字符串从索引号为5开始截取,一直到字符串末尾。(索引值从0开始): String str = "abcdabcoph"; str.substring(5); System.out.println(str.substring(5));输出结果 阅读全文
posted @ 2021-08-03 17:15 唏嘘- 阅读(420) 评论(0) 推荐(0) 编辑
摘要: tomcat 部署 web 项目,将打好的war包,放到 webapps 目录下 启动tomcat ,会自动解压 1、省略端口号,通过项目名访问 修改 server.xml <Connector port="8080" protocol="HTTP/1.1" connectionTimeout="2 阅读全文
posted @ 2021-08-03 16:49 唏嘘- 阅读(645) 评论(0) 推荐(0) 编辑
摘要: 1、 a href="JavaScript:js_method();" 这种方法在传递this等参数的时候很容易出问题, 而且javascript:协议作为a的href属性的时候不仅会导致不必要的触发window.onbeforeunload事件, 在IE里面更会使gif动画图片停止播放。W3C标准 阅读全文
posted @ 2021-08-03 15:49 唏嘘- 阅读(604) 评论(0) 推荐(0) 编辑