这个是在jQuery1.6版本之后出现的鬼东西。受影响的主要有下拉列表select与复选框checkbox。众所周知,在jQuery中可以用attr()取出节点的属性,然而对于checkbox却不是这样了,比如我要取出其是否被选中的属性checked,attr("checked")去取没有选中的复选框是undefinded的,只能取出被选中复选框的属性。这个问题,导致我在一个条件判断中忙活了比较久...
分类:
Web程序 时间:
2015-06-06 12:11:49
阅读次数:
163
1637: Yet Satisfiability Again!Time Limit:5 SecMemory Limit:128 MBDescriptionAlice recently started to work for a hardware design company and as a par...
分类:
其他好文 时间:
2015-06-04 13:46:44
阅读次数:
228
使用.is(":checked")判断是否被选择选中为:true未选中为:false该值不是字符串“true ”,“false”使用.prop("checked", true/flase)设置复选框是否选中不要使用.attr()方法使用上述方式兼容性最好不过还是存在一些问题
分类:
Web程序 时间:
2015-06-03 19:14:30
阅读次数:
115
This is a fundamental and yet classic problem. I share my three solutions here:Iterative solution using stack ---O(n)time andO(n)space;Recursive solut...
分类:
其他好文 时间:
2015-06-03 00:54:17
阅读次数:
101
This is a fundamental and yet classic problem. I share my three solutions here:Iterative solution using stack ---O(n)time andO(n)space;Recursive solut...
分类:
其他好文 时间:
2015-06-03 00:49:25
阅读次数:
132
This is a fundamental and yet classic problem. I share my three solutions here:Iterative solution using stack ---O(n)time andO(n)space;Recursive solut...
分类:
其他好文 时间:
2015-06-03 00:46:35
阅读次数:
131
project.properties
# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must be checked in Version Control Systems.
#
# To...
分类:
移动开发 时间:
2015-06-02 20:14:31
阅读次数:
143
【scons】 安装scons。在根目录下运行。 SConswill work with any 2.x version of Python from 2.7 on; 3.0 and later are not yet supported. If you need to install Py...
分类:
其他好文 时间:
2015-06-01 22:27:38
阅读次数:
160
1、jquery中的几个小应用
function selectType(keytypeTem){
//给单选按钮赋值
if (null == keytypeTem || "" == keytypeTem) {
$('input:radio:first').attr('checked', 'checked');
} else if(1 == keytyp...
分类:
Web程序 时间:
2015-06-01 20:35:12
阅读次数:
120
Java程序设计语言提供了三种可抛出结构(throwable):受检的异常(checked exception),运行时异常(run-time exception)和错误(error)。 关于什么时候适合使用哪种可抛出结构,程序员中存在一些困惑。虽然这项决定并不总是那么清晰,但是还是有一般性的原则提...
分类:
其他好文 时间:
2015-06-01 16:31:02
阅读次数:
263