1 /*先定义个三线表*/ proc template; define style work.threeline; parent=styles.rtf; class table/ frame=hsides rules=group borderspacing=0pt; end; run; option ...
分类:
其他好文 时间:
2020-07-25 11:27:42
阅读次数:
93
1、菜单视图属性: 常用属性: name是展示在用户界面中的菜单项标题 action是点击菜单项时运行的窗口操作的XML ID parent是父级菜单项的XML ID。本例中父级项由其它模块创建,因此们使用了完整的XML ID, <module>.<XML ID>进行引用。 还有以下可用属性: se ...
分类:
其他好文 时间:
2020-07-24 21:28:23
阅读次数:
139
1.POM文件 1.父项目 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.2.1.RELEASE</version ...
分类:
编程语言 时间:
2020-07-24 16:37:08
阅读次数:
71
[编程题] lc:674. 最长连续递增序列 题目描述 给定一个未经排序的整数数组,找到最长且连续的的递增序列,并返回该序列的长度。 输入输出 思路 Java代码 class Solution { public int findLengthOfLCIS(int[] nums) { //极端条件 if ...
分类:
其他好文 时间:
2020-07-24 15:30:43
阅读次数:
58
// 数据源类class Weather { public static function getWether() { $data = array( 'tep' => 28, 'wind' => 5, 'sun' => 'sunny' ); return serialize($data); } } ...
分类:
Web程序 时间:
2020-07-24 09:41:33
阅读次数:
78
Given a string containing only digits, restore it by returning all possible valid IP address combinations. A valid IP address consists of exactly four ...
分类:
其他好文 时间:
2020-07-23 23:22:00
阅读次数:
75
衡量一个网站运营的好与坏,主要看俩个指标,浏览量(PV)、访客数(UV),
PV和UV俩个关键指标,下面我们为网站,添加分析功能,就是为了优化用户体验
提升访问量。 ...
分类:
Web程序 时间:
2020-07-23 09:24:08
阅读次数:
104
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