示例 1 : 增加class 通过addClass() 增加一个样式中的class <script src="https://how2j.cn/study/jquery.min.js"></script> <script> $(function(){ $("#b1").click(function( ...
分类:
Web程序 时间:
2020-08-01 12:32:55
阅读次数:
98
字段保留在 dba_ind_columns视图中 select a.uniqueness 索引类型,b.index_name 索引名称,b.column_name 字段 from user_indexes a ,user_ind_columns b where a.table_name=b.tabl ...
分类:
数据库 时间:
2020-07-30 18:27:10
阅读次数:
135
原文:https://blog.csdn.net/weixin_40719943/article/details/106964140 使用EFCore,不能在数据库中直接操作,需要将视图和存储过程,放到一个migration当中就可以了无主键entity,参考官方文档。 ...
分类:
其他好文 时间:
2020-07-30 16:42:32
阅读次数:
104
public static void main(String[] args) { CyclicBarrier cyclicBarrier = new CyclicBarrier(2, () -> { System.out.println(" "); }); List<Integer> list = ...
分类:
其他好文 时间:
2020-07-29 21:40:00
阅读次数:
61
phpexcel图片获取常见的两种方式: require_once dirname(__FILE__) . '/../Jn/PHPExcel.php'; $filePath = "123.xls"; $inputFileType = PHPExcel_IOFactory::identify($fil ...
分类:
Web程序 时间:
2020-07-29 17:38:51
阅读次数:
81
首先有一点先确认下.net core 不存在Server.MapPath这个方法所以想引用服务器根目录或者web根目录应该在controller中引入IWebHostEnvironment对象 private readonly IWebHostEnvironment _hostingEnvironm ...
分类:
Web程序 时间:
2020-07-29 15:29:50
阅读次数:
123
1、居中弹出 $k.msg({content:'居中弹出'}); 查看效果 2、左上角弹出 $k.msg({ content:'左上角弹出', style:{left:0,top:0} }); 查看效果 3、右下角弹出 $k.msg({ content:'右上角弹出', style:{left:'r ...
分类:
其他好文 时间:
2020-07-29 15:23:27
阅读次数:
104
git 常用命令 git add * 预提交 git commit -m '描述' 提交 git init 创建仓库 git status 查看当前是否有文件待提交 gik 以图形界面显示仓库及记录 git commit --amend 覆盖上一次提交 ...
分类:
其他好文 时间:
2020-07-28 13:55:56
阅读次数:
49
注册表脚本如下 Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\Directory\Background\shell\CMD Here] "ShowBasedOnVelocityId"=dword:00639bc8 "Icon"="cm ...
序列化与反序列化对比 1、常用的优秀序列化使用方式 Newtonsoft.Json //object => string JsonConvert.SerializeObject(object? value); //string => object JsonConvert.DeserializeObj ...
分类:
其他好文 时间:
2020-07-27 15:37:34
阅读次数:
65