码迷,mamicode.com
首页 >  
搜索关键字:not checked yet..    ( 2728个结果
单选框选中事件
关于修改选中事件,容易被坑的就是单选框是隐藏的。js无法对其进行修改jQuery 修改单选框 $('input:radio[name="time"]').attr('checked','true') //checked; $('input:radio[name="time"]')....
分类:其他好文   时间:2014-11-27 14:11:56    阅读次数:124
10)Error and Exception
1>异常继承类 Error类和Exception类都继续自Throwable类 Error表示系统级的错误情况,如内存错误这样程序无法通过自身的处理再继续执行下去的情况 java提供了两类主要的异常:runtime exception和checked exception。 checked 异常也就是...
分类:其他好文   时间:2014-11-26 16:06:40    阅读次数:157
checkbox全选和反选
$("#CheckBox").click(function(){if(this.checked){$("input[type='CheckBox']").each(function(){this.checked=true;});}else{$("input[type='CheckBox']").ea...
分类:其他好文   时间:2014-11-26 15:52:12    阅读次数:132
CF 269 E Flawed Flow
Emuskald considers himself a master of flow algorithms. Now he has completed his most ingenious program yet — it calculates the maximum flow in an undirected graph. The graph consists of n vertices ...
分类:其他好文   时间:2014-11-26 01:26:22    阅读次数:206
权限管理
无标题文档 位置: 首页 表单 基本信息 checked=checked id="{$first.id}" pid="{$first.pid}" level="{$first.level}" value="{$first.id}_{$first.level}"/> ...
分类:其他好文   时间:2014-11-25 20:32:30    阅读次数:175
界面数据发生变化时候刷新
$('ul').listview('refresh');$("select#foo").selectmenu("refresh");$("input[type='checkbox']").attr("checked",true).checkboxradio("refresh");$("input[t...
分类:其他好文   时间:2014-11-25 01:37:56    阅读次数:189
HTML5新事物
1 指定编码字符集,极力推荐2 指定lang,所有的标签上都有,推荐在上指定。3 css样式的引入,不再需要指定type="text/css"4 js的引入,不再需要language="javascript",但是关闭标签是必须的。上面一行是针对IE而设定的。5 checkbox,checked是一...
分类:Web程序   时间:2014-11-24 16:53:09    阅读次数:236
编译“have the same erasure, yet neither overrides“
编译报错: have the same erasure, yet neither overrides the other 首先,这个问题貌似出现在JDK1.7 中,1.6时应该可以的。 public?class?PortfolioDataValidator?implements?IRecordValidator{ ????p...
分类:其他好文   时间:2014-11-24 12:08:16    阅读次数:285
C#中控件的CheckState和Checked属性区别?
Checked 和CheckState都是检查控件选中状态,都能判断是否选中控件。 只是Checked 通过布尔判断(true & false); CheckState 通过枚举判断。checked是直接通过true或者false 来判断CheckBox或者CheckBoxList是否选中的 例如:...
分类:Windows程序   时间:2014-11-24 11:48:37    阅读次数:428
Go Data Structures: Interfaces
原文链接http://research.swtch.com/interfacesGo's interfaces—static, checked at compile time, dynamic when asked for—are, for me, the most exciting part of...
分类:其他好文   时间:2014-11-23 14:20:48    阅读次数:226
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!