给input的button按钮的点击事件添加背景颜色变化 1. $("#aa").style.backgroundColor = 'red'这种写法报错 2. $("#aa").css("background-color","gray");这种写法可以实现背景色的改变 ...
分类:
其他好文 时间:
2018-01-02 15:26:07
阅读次数:
902
``` cat aa.c / ringbuf .c / include include define NMAX 8 int iput = 0; / 环形缓冲区的当前放入位置 / int iget = 0; / 缓冲区的当前取出位置 / int n = 0; / 环形缓冲区中的元素总数量 / doub ...
分类:
其他好文 时间:
2018-01-02 15:23:38
阅读次数:
209
a = 4b = 5 #第1种c = 0c = aa = bb = c #第2种a = a+bb = a-ba = a-b #第3种a,b = b,a print("a=%d,b=%d"%(a,b)) ...
分类:
编程语言 时间:
2018-01-01 00:27:51
阅读次数:
228
Description Input 输入数据首先输入两个整数N,M,表示了迷宫的边长。 接下来N行,每行M个字符,描述了迷宫。 输入数据首先输入两个整数N,M,表示了迷宫的边长。 接下来N行,每行M个字符,描述了迷宫。 Output 若小AA能够赢得游戏,则输出一行"WIN",然后输出所有可以赢得游 ...
分类:
Web程序 时间:
2017-12-31 20:59:31
阅读次数:
192
说明:aa保存失败,或者bb保存失败,则全部回滚,只有两个全部成功,才成功 ...
分类:
数据库 时间:
2017-12-28 21:50:21
阅读次数:
226
for循环语句:i决定循环的次数for i in 1 aa c 88do echo $idone # echo {1..5}1 2 3 4 5# x=5# echo {1..$x}{1..5}# seq $x12345#!/bin/bashfor i in {60..70}do ping -c1 1 ...
分类:
系统相关 时间:
2017-12-28 11:46:24
阅读次数:
154
1.数字int 加减乘除 +,-,*,/ 2的4次方 a=2**4 39除以8的余数(????) a=39 % 8 a=7 7除以3的结果里只取整数部分 7//3=2 2.字符窜str 加法 n1='p' n2='a' n3=n1+n2 n3='pa' 乘法 n1='a' n2=n1 * 2='aa ...
分类:
其他好文 时间:
2017-12-26 23:52:00
阅读次数:
281
[root@db01 data]# echo "tttt" >aa.txt[root@db01 data]# echo "tttt" >bb.txt[root@db01 data]# cd ..[root@db01 /]# grep -rl tttt /data//data/bb.txt/data/ ...
分类:
其他好文 时间:
2017-12-25 23:21:42
阅读次数:
137
The shorter, the simpler. With this problem, you should be convinced of this truth. You are given an array AA of NN postive integers, and MM queries i ...
分类:
其他好文 时间:
2017-12-25 11:38:59
阅读次数:
142
//示例 var a={"name":"tom","sex":"男","age":"24"}; //向数据库存储时传参数a时,直接这样传会存为object //json数组转化为字符串的方法 var aa = JSON.stringify(a) 这样转化一下就会存为字符串了 ...
分类:
编程语言 时间:
2017-12-24 01:47:06
阅读次数:
128