This is a simple example showing a small window. Yet we can do a lot with this window. We can resize it, maximise it, or minimise it. This requires a ...
分类:
其他好文 时间:
2015-04-17 13:06:34
阅读次数:
113
题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3610
题面:
Yet Another Story of Rock-paper-scissors
Time Limit: 2 Seconds Memory Limit: 65536 KB
Akihisa and Hi...
分类:
其他好文 时间:
2015-04-17 11:42:00
阅读次数:
148
$(function () { //全选按钮单击事件 $("#cbkAll").live("click", function () { $(".id").attr("checked", $(this).is('...
分类:
其他好文 时间:
2015-04-17 09:31:27
阅读次数:
111
D - Cyclic Nacklace
Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u
Submit Status
Description
CC always becomes very depressed at the end of this month, he has checked his c...
分类:
其他好文 时间:
2015-04-16 21:57:27
阅读次数:
215
/// /// Double-Checked Locking implements a thread-safe singleton class/// public sealed class Singleton{ private static Singleton _instance = null; /...
分类:
其他好文 时间:
2015-04-16 12:00:57
阅读次数:
118
执行yum操作,报错:YumRepo Error: All mirror URLs are not using ftp, http[s] or file.Eg. $releasever is not a valid release or hasnt been released yet/removin...
分类:
其他好文 时间:
2015-04-16 11:46:30
阅读次数:
272
异常的分类
1. 非运行时异常(Checked Exception)
Java中凡是继承自Exception但不是继承自RuntimeException的类都是非运行时异常。
2. 运行时异常(Runtime Exception/Unchecked Exception)
RuntimeException类直接继承自Exception类,称为运行时异常。Jav...
分类:
编程语言 时间:
2015-04-15 21:31:31
阅读次数:
152
先看一段代码aaa bbb ccc 网上流行的说法就是$(input[name='aaa'][checked]).val() 能取到选中项的value,但我测试后发现只在IE下有效,在firefox和Chrome中不论选中哪一项,或者不选,取到的值都是第一项的value正确...
分类:
Web程序 时间:
2015-04-15 11:09:27
阅读次数:
149
赋值复选框CheckBox遍历取值1. 获取单个checkbox选中项(三种写法):$("input:checkbox:checked").val()或者$("input:[type='checkbox']:checked").val();或者$("input:[name='ck']:checked...
分类:
Web程序 时间:
2015-04-14 14:37:57
阅读次数:
162
在jquery 1.8.x中的版本,我们对于checkbox的选中与不选中操作如下:判断是否选中$('#checkbox').prop('checked')设置选中与不选中状态:$('#checkbox').attr('checked',true)$('#checkbox').attr('check...
分类:
Web程序 时间:
2015-04-13 18:40:28
阅读次数:
161