事件 js中添加事件的第一种方式: 在HTML上直接使用事件属性来添加,属性值为监听执行的函数 js中的事件只有在当前HTML上有效 一个HTML可以添加多个不同的事件 一个监听事件可以触发多个函数,不同的函数之间用分号隔开 点击事件 单机 onclick 双击 ondblclick 鼠标事件 on ...
分类:
Web程序 时间:
2020-01-18 19:41:56
阅读次数:
95
Winform控件的动态删除请参考Winform控件动态删除 List<Button> listButton = new List<Button>(); foreach (var control in wrapPanelContainer.Children) { if(!(control is Bu ...
1.classList 属性 可以给指定的dom 增加多个class,他是只读的,只可以使用 add() 和 remove() 方法修改。 eg: document.getElementById("myDIV").classList.add("mystyle", "anotherClass", "t ...
分类:
Web程序 时间:
2020-01-17 18:41:09
阅读次数:
103
一、问题 https://leetcode-cn.com/problems/move-zeroes/ 给定一个数组 nums,编写一个函数将所有 0 移动到数组的末尾,同时保持非零元素的相对顺序。 示例: 输入: [0,1,0,3,12] 输出: [1,3,12,0,0] 说明: 必须在原数组上操作 ...
分类:
移动开发 时间:
2020-01-17 16:18:34
阅读次数:
106
原题链接在这里:https://leetcode.com/problems/reaching-points/ 题目: A move consists of taking a point (x, y) and transforming it to either (x, x+y) or (x+y, y) ...
分类:
其他好文 时间:
2020-01-17 13:51:06
阅读次数:
117
[ZJOI2007]捉迷藏 这是我最近写过最长的代码QAQ 码力太弱了QAQ 动态点分治模板题。 我们可以用三种堆来维护答案,这些堆要求支持删除非顶元素,以及查询次小值。我们把两个STL堆封装起来就可以实现。 三种堆: d[x]表示以x为根的点分树中所有黑点到它分治爹的距离 c[x]表示以x为根的所 ...
分类:
其他好文 时间:
2020-01-17 00:06:26
阅读次数:
58
原文:https://blog.csdn.net/weixin_38917807/article/details/81667041 原文:https://blog.csdn.net/weixin_41561539/article/details/94294828 pip安装库: pip instal ...
分类:
编程语言 时间:
2020-01-16 12:36:15
阅读次数:
88
There are n computers numbered from 0 to n-1 connected by ethernet cables connections forming a network where connections[i] = [a, b] represents a con ...
分类:
Web程序 时间:
2020-01-15 14:20:49
阅读次数:
105
phy:/dev/ea-xen/xea-gw1-root,xvda2,w /dev/ea-xen/xea-gw1n-root lvcreate -L16G -n xea-gw1n-root ea-xen dd if=/dev/ea-xen/xea-syslog1-root bs=256k of=/d ...
分类:
数据库 时间:
2020-01-15 14:03:24
阅读次数:
102
a = [11,22,33,44,55,66,77]b = []'''for i in a: if i==33 or i==44: a.remove(i) print(a)#发现44没有删除掉 是因为 删除33的时候 44已经相当于33的下标去了 i越过去了''' #解决方法是for i in a: ...
分类:
编程语言 时间:
2020-01-14 13:22:48
阅读次数:
74