20191105学习总结(一)列表合并1.colspan: 横向合并,列合并2.rowspan: 纵向合并,行合并3.th:表头 会加粗,同时样式居中 td th → tr → ..... td td tr → ..... td4. table → tbody → .......... td tr ...
分类:
其他好文 时间:
2019-11-22 00:36:25
阅读次数:
95
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/strict.dtd"><html><head><META http-equiv=Content-Typ ...
分类:
其他好文 时间:
2019-11-21 22:49:17
阅读次数:
74
在我们进行自动发现的时候,总会有一个脚本来获取端口等信息,并返回json格式,那以redis为例,下边是redis进行进行自动发现的脚本redisport=(`psaux|grep-wredis-server|grep-v"grep"|awk-F‘:‘‘{print$NF}‘`)portnum=${#redisport[@]}count=`hostname|grep"\-SQ"|wc-l`if[$
分类:
Web程序 时间:
2019-11-21 21:24:15
阅读次数:
121
一、直观查询CPU数量 逻辑CPU个数: # cat /proc/cpuinfo | grep 'processor' | wc -l 物理CPU个数: # cat /proc/cpuinfo | grep 'physical id' | sort | uniq | wc -l 每个物理CPU中Co ...
分类:
系统相关 时间:
2019-11-21 16:46:02
阅读次数:
97
一、SPEL表达式权限控制 从 开始已经可以使用 表达式来控制授权,允许在表达式中使用复杂的布尔逻辑来控制访问的权限。Spring Security可用表达式对象的基类是SecurityExpressionRoot。 | 表达式函数 | 描述 | | | | | ) | 用户拥有指定的角色时返回tr ...
分类:
编程语言 时间:
2019-11-21 10:23:29
阅读次数:
86
需求:在需要计算每一列的总和显示在最后一行 eg; AA BB CC 1 2 3 1 2 3 SUM 2 4 6 大概是酱紫 我用的是mvc Model 显示的 1 @model TModel 2 3 <table> 4 <tr> 5 <th>aa</th> 6 <th>aa</th> 7 <th> ...
<table border="1px" cellpadding="0" cellspacing="0" width="200px"> <tr class="red"> <th>用户id:</th> <th>用户名:</th> <th>用户密码:</th> </tr> <c:forEach items ...
分类:
其他好文 时间:
2019-11-19 10:30:10
阅读次数:
76
1.第一种,!$(event.target).is('input'),判断触发事件的元素是否为input。此时使用event.target,而不是this,获取事件本身,防止触发事件冒泡的问题。 $("#data_table tr").on("click",function (event) { if ...
分类:
Web程序 时间:
2019-11-18 12:38:31
阅读次数:
389
<table> <tr> <td>row1 col1</td> <td>row1 col2</td> <td>row1 col3</td> </tr> <tr> <td>row2 col1</td> <td>row2 col2</td> <td>row2 col3</td> </tr> <tr> < ...
分类:
Web程序 时间:
2019-11-17 20:49:45
阅读次数:
84
此例子已经包含本文大部分内容,请对照参考。查看代码 》 定义和用法 table标签定义 HTML 表格。 创建表格的四要素:table、tr、th、td <table> 整个表格以<table>标记开始、</table>标记结束。 <tr> Table row。表格的一行,有几对 tr 表格就有几行 ...
分类:
Web程序 时间:
2019-11-17 17:27:25
阅读次数:
146