码迷,mamicode.com
首页 > 全部
jquery事件触发
一 事件绑定的两种方式 $('xx').click(function(){ })$('xx').on('click',function(){}) 二 常用事件 1.click() 点击事件 $('.d1').click(function () { $(this).css({'background-c ...
分类:Web程序   时间:2021-04-06 14:22:41    阅读次数:0
5708. 统计一个数组中好对子的数目
给你一个数组 nums ,数组中只包含非负整数。定义 rev(x) 的值为将整数 x 各个数字位反转得到的结果。比方说 rev(123) = 321 , rev(120) = 21 。我们称满足下面条件的下标对 (i, j) 是 好的 : 0 <= i < j < nums.length nums[ ...
分类:编程语言   时间:2021-04-06 14:22:24    阅读次数:0
手写Promise (2)实现then方法
class MyPromise { constructor(executor) { this.state = 'pending'; this.value = null; try { executor(this.resolve.bind(this),this.reject.bind(this)); } ...
分类:其他好文   时间:2021-04-06 14:22:04    阅读次数:0
安装Adobe Photoshop CC修改默认安装磁盘
1、修改默认安装磁盘 打开安装根目录下的resources文件夹内,找到Config文件将<ShowInstallOptions>false</ShowInstallOptions>改为<ShowInstallOptions>true</ShowInstallOptions> 2、安装完成后打开Ph ...
分类:其他好文   时间:2021-04-06 14:21:42    阅读次数:0
jquery 事件触发二
一 动画效果 1. show(3000); 3秒这后出来2. hide(3000);3秒后隐藏3. toggle(3000); 反着来,如果之前是隐藏,现在就是出现4. slideDown(3000); 宽度不变,高度变化 卷拉门5. slideUp(3000); 6. $('.c1').fadeI ...
分类:Web程序   时间:2021-04-06 14:21:28    阅读次数:0
Electron常用总结
1. 避坑总结 版本10以前默认开启webPreferences的enableRemoteModule,版本10以后需要手动开启,默认为false 2. 常用模块 remote remote 模块为渲染进程(web页面)和主进程通信(IPC)提供了一种简单方法 shell shell 模块提供与桌面 ...
分类:其他好文   时间:2021-04-06 14:21:16    阅读次数:0
Shortcut Keys Configure of Typora
Shortcut Keys Configure Summary You can use shortcut keys to quickly insert or modify styles or do other operations supported by Typora. You can find ...
分类:其他好文   时间:2021-04-06 14:21:02    阅读次数:0
AI基础架构Pass Infrastructure
AI基础架构Pass Infrastructure Operation Pass OperationPass : Op-Specific OperationPass : Op-Agnostic Dependent Dialects Initialization Analysis Management ...
分类:其他好文   时间:2021-04-06 14:20:42    阅读次数:0
Python3.7源码编译安装
1. 下载源码包 2. 上传服务器并解压到指定位置 3. 安装依赖库 ~]# yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel libffi-deve ...
分类:编程语言   时间:2021-04-06 14:20:30    阅读次数:0
CentOS7自定义镜像
1. 安装需要的软件 ~]# yum install -y vim net-tools sysstat createrepo mkisofs rsync syslinux 2. 创建目录及文件拷贝 创建本地yum源 ~]# mount /dev/sr0 /mnt #挂载镜像或者U盘,如果是U盘就是/ ...
分类:其他好文   时间:2021-04-06 14:20:16    阅读次数:0
LDAP3
### [RFC4511 Result Code](https://datatracker.ietf.org/doc/rfc4511/?include_text=1) ``` success (0), operationsError (1), protocolError (2), timeLimit ...
分类:其他好文   时间:2021-04-06 14:19:59    阅读次数:0
GitLab CI/CD入门
在项目的根目录下放置.gitlab-ci.yml文件来达到持续集成和部署的目的。 .gitlab-ci.yml被runner进程读取,从而完成CI/CD的任务。默认情况下有三个阶段的流水线阶段:build、test、deploy。 简而言之,具体的CI所需要的步骤就两步: 添加.gitlab-ci. ...
分类:其他好文   时间:2021-04-06 14:19:41    阅读次数:0
Spring Cloud 升级之路 - 2020.0.x - 1. 背景知识、需求描述与公共依赖
1. 背景知识、需求描述与公共依赖 1.1. 背景知识 & 需求描述 Spring Cloud 官方文档说了,它是一个完整的微服务体系,用户可以通过使用 Spring Cloud 快速搭建一个自己的微服务系统。那么 Spring Cloud 究竟是如何使用的呢?他到底有哪些组件? spring-cl ...
分类:编程语言   时间:2021-04-06 14:19:20    阅读次数:0
[CF864E] Fire - 背包dp
某人的房子着火了,他想从大火中带走价值总和尽量多的物品,每次他只能带走一个,分别给出挽救某物品需要的时间t,该物品开始燃烧的时间d(在d时间开始燃烧就不能再挽救该物品了),该物品的价值p。约束:n(1<=n<=100) ti(1<=ti<=20),di(1<=di<=2000),pi(1<=pi<=... ...
分类:其他好文   时间:2021-04-06 14:18:55    阅读次数:0
github.com 慢
原来命令: git clone https://github.com/fanux/sealos 改为这个: git clone https://github.com.cnpmjs.org/fanux/sealos 变化:增加了".cnpmjs.org" ...
分类:其他好文   时间:2021-04-06 14:18:29    阅读次数:0
个人瞎搞之 typescript获取指定位置处的参数类型
type GetIndexType_0<T> = T extends [infer T0, ...infer TS] ? T0 : never; type GetIndexType_1<T> = T extends [infer T0, infer T1, ...infer TS] ? T1 : n ...
分类:其他好文   时间:2021-04-06 14:18:10    阅读次数:0
[LeetCode] 781. Rabbits in Forest
In a forest, each rabbit has some color. Some subset of rabbits (possibly all of them) tell you how many other rabbits have the same color as them. Th ...
分类:其他好文   时间:2021-04-06 14:17:51    阅读次数:0
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!