package LeetCode_301 import java.util.* import kotlin.collections.ArrayList import kotlin.collections.HashSet /** * 301. Remove Invalid Parentheses * ...
分类:
其他好文 时间:
2020-07-23 01:35:43
阅读次数:
70
px,%是布局常用单位, em是相对于父元素的font-size而定的, 比如谷歌浏览器font-size是16px,则div直接显示时是1em=16px, 当 <div class="parent"> <div class="son">111</div> </div> <style> .paren ...
分类:
其他好文 时间:
2020-07-22 23:33:27
阅读次数:
87
动态节点事件 $("#addPopuForm").on("click", '.del-card', function () { $(this).parent().remove(); }); 事件 focus 获取焦点事件 blur 失去焦点事件 hover 鼠标悬停事件 mouseleave 鼠标移 ...
分类:
Web程序 时间:
2020-07-22 16:14:35
阅读次数:
101
当在Springboot项目中引入了spring-boot-starter-parent,则可以不用引入依赖包版本号,比如: <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-pa ...
分类:
编程语言 时间:
2020-07-22 11:32:08
阅读次数:
117
在官网找到的就只有这个方法,但是我放在app项目里并不支持,所以就想到vue的阻止事件冒泡的方法,现在分享,免得大家踩坑 <view class="parent" @click="doSomeThing"><view class="child" @click.stop="doSmall"> 实例: ...
分类:
移动开发 时间:
2020-07-21 21:26:49
阅读次数:
161
In this tutorial we will be looking at how Spring Security works and its architecture. We will be creating a Spring Boot Project to expose two REST AP ...
分类:
编程语言 时间:
2020-07-20 20:32:59
阅读次数:
72
$("#test1").parent(); // 父节点 $("#test1").parents(); // 全部父节点 $("#test1").parents(".mui-content");//返回class为mui-content的父节点 $("#test1").children(); // ...
分类:
Web程序 时间:
2020-07-20 13:17:42
阅读次数:
76
QT版本:win32 QT Creator5.9.9 在QT中只有横条状的进度条,目前需要使用圆形状进度条显示进度,只能自己设计一个,可以显示圆弧、圆圈和中心文本。 设计思路: ①设计一个QWidget部件类。 提供圆圈的半径属性,根据该属性把该部件初始化为一个长宽相等的正方形部件。 ②重载pain ...
分类:
其他好文 时间:
2020-07-20 10:54:06
阅读次数:
62
给定一个含有数字和运算符的字符串,为表达式添加括号,改变其运算优先级以求出不同的结果。你需要给出所有可能的组合的结果。有效的运算符号包含 +, - 以及 * 。 示例 1: 输入: "2-1-1" 输出: [0, 2] 解释: ((2-1)-1) = 0 (2-(1-1)) = 2 示例 2: 输入 ...
分类:
其他好文 时间:
2020-07-19 16:31:26
阅读次数:
72
// 文件分隔符 String separator = File.separator; /** 构造器的使用 */ // 使用相对路径创建文件 File file = new File("hello.txt"); // 使用绝对路径创建文件 File file1 = new File("C:\\Us ...
分类:
编程语言 时间:
2020-07-19 00:58:21
阅读次数:
108