[toc] 网格布局 grid(1) 实现方式 也可成为 行内元素 tip:设为网格布局以后,容器内的子元素的 float 、 display:inline block/table cell , vertical align 和 column 等 各项设置属性都将失效 对容器设置的属性 行高与列宽的 ...
分类:
其他好文 时间:
2019-12-28 12:51:54
阅读次数:
91
layui的table控件中默认是一行数据只显示在一行内的,有时候内容长的时候就看不完,需要把所有的内容显示出来,因此就需要换行处理。 只需加入下面的样式即可。 参考:https://blog.csdn.net/cdsn13082487212/article/details/91039184 ...
分类:
其他好文 时间:
2019-12-28 09:21:53
阅读次数:
387
1.属性--打印用msgbox 'MsgBox Application.Name'MsgBox Application.Version'MsgBox Sheet3.Name'MsgBox Worksheets(3).Name'MsgBox Worksheets("Sheet1").Name 2.修改 ...
分类:
其他好文 时间:
2019-12-27 11:36:53
阅读次数:
57
formatter: function (cellvalue, options, rowObject) { var name = ""; getAjax('/HouseModule/Y_Dictionary/BinDingItemsJson', { Code: 'houseType' ... ...
分类:
其他好文 时间:
2019-12-26 13:23:49
阅读次数:
55
$.each(this.columns, function(i, column) { if (!column.editable) { return; } if (!column.editable.canEdit) { return; } 增加如下代码 ...
分类:
其他好文 时间:
2019-12-25 13:13:30
阅读次数:
352
1、首先每个列都有一个title,里面放入完整信息,然后写一个如下的function, 1 2 3 4 5 6 7 8 function tdTitle(){ $('th').each(function(index,element){ $(element).attr('title',$(elemen ...
分类:
其他好文 时间:
2019-12-24 11:47:43
阅读次数:
180
Private Sub Worksheet_SelectionChange(ByVal Target As Range) Dim rows_count As Integer Dim rows_id As Integer Dim column_count As Integer Dim column_i ...
分类:
编程语言 时间:
2019-12-24 11:33:19
阅读次数:
1089
事务是MySQL等关系型数据库区别于NoSQL的重要方面,是保证数据一致性的重要手段。本文将首先介绍MySQL事务相关的基础概念,然后介绍事务的ACID特性,并分析其实现原理。 MySQL博大精深,文章疏漏之处在所难免,欢迎批评指正。 一、基础概念 事务(Transaction)是访问和更新数据库的 ...
分类:
数据库 时间:
2019-12-23 20:30:26
阅读次数:
84
1.eval(idName) 【问题描述】:IE、safari、Chrome浏览器下都可以使用eval(idName)或getElementById(idName)来取得id为idName的HTML对象;firefox下只能使用getElementById(idName)来取得id为idName的H ...
分类:
其他好文 时间:
2019-12-23 19:18:43
阅读次数:
87
C# 中 延时执行方案,如下,如果同一个DelayedProcess 对象连续调用 SetTimeout ,默认取消前一次调用. public class DelayedProcess<Req,Rsp> { public delegate void ExcuteMethod(Result rsp); ...