jQuery(四) 1. 几种遍历方法 1.1. each方法 1.1.1 jq对象.each()方法 遍历jQuery对象集合,为每个匹配的元素执行一个函数 语法: $(selector).each(function(index,element)) 参数 描述 function*(index,el ...
分类:
Web程序 时间:
2020-11-19 12:19:16
阅读次数:
16
当点击事件drawer==true时,抽匣回打开 这时抽匣的标题会出现一个难看的蓝色边框,一会就会消失,但是好丑,所以要去掉它 解决方法 /deep/ :focus { outline: 0; } vue组件中,在style设置为scoped的时候,里面在写样式对子组件是不生效的,如果想让某些样式对 ...
分类:
其他好文 时间:
2020-11-18 12:39:43
阅读次数:
5
Cannot find current proxy: Set 'exposeProxy' property on Advised to 'true' to make it available, and ensure that AopContext.currentProxy() is invoked ...
分类:
其他好文 时间:
2020-11-18 12:32:47
阅读次数:
7
Caused by: org.aspectj.apache.bcel.classfile.ClassFormatException: File: 'java.lang.CharSequence': Invalid byte tag in constant pool: 18 at org.aspect ...
分类:
编程语言 时间:
2020-11-18 12:29:42
阅读次数:
5
用dp[i][j]表示将keys的前i + 1个字母(0 ~ i)与ring匹配完成、并且当前ring的第j个字母与12:00对齐所需要的最小步数。 对于key的第一个字母key[0], 要找到ring中某个字母ring[i]与他相等,才能完成key[0]的匹配,可以扫描一遍ring,如果ring[ ...
分类:
其他好文 时间:
2020-11-17 12:51:37
阅读次数:
9
我们经常用find和xargs来进行批处理文件。 常见的用法如:find ./ -name ".jpg" | xargs cp -t ./JPEGImages ,实现将当前目前下所有以.jpg结尾的文件复制到当前目录下的JPEGImages目录中。 但是当find找到一个文件名中含有空格的文件时,便 ...
分类:
其他好文 时间:
2020-11-16 13:29:44
阅读次数:
8
forEach()、map()、filter()、find()、reduce()、some()、every() 它们都自带遍历(只要调用这个方法就会自动循环数组中的每一项) 它们都不会改变原数组,调用方法后产生的结果在返回值中 它们的参数都是一个函数,这个函数都有三个参数(只有第一个“项”是必填的) ...
分类:
编程语言 时间:
2020-11-16 13:15:51
阅读次数:
10
1、查找/etc目录下大于1M且类型为普通文件的所有文件find/etc-typef-size+1M2、打包/etc/目录下面所有conf结尾的文件,压缩包名称为当天的时间,并拷贝到/usr/local/src目录备份。3、利用sed取出ifconfig命令中本机的IPv4地址ifconfigens33|sed-n‘2p‘|sed-r‘s/(^[^0-9]+)([0-9.]
分类:
其他好文 时间:
2020-11-16 13:03:17
阅读次数:
4
1、查找/etc/目录下大于1MB且类型为普通文件的所有文件find/etc-size+1M-typef2、打包/etc/目录下所有以conf结尾的文件,压缩包名称为当天的时间,拷贝到/usr/local/src目录备份find/etc-name"*conf"|xargstar-czf`date+"%F"`.tar.gz-C/usr/local/src3、利用sed取出ifconfig命令中本机的
分类:
系统相关 时间:
2020-11-16 12:59:55
阅读次数:
17
Given an array of integers nums and an integer threshold, we will choose a positive integer divisor and divide all the array by it and sum the result ...
分类:
其他好文 时间:
2020-11-13 13:21:44
阅读次数:
33