码迷,mamicode.com
首页 >  
搜索关键字:not checked yet..    ( 2728个结果
java中的Checked Exception和Unchecked Exception的区别
Java 定义了两种异常: - Checked exception: 继承自 Exception 类是 checked exception。代码需要处理 API 抛出的 checked exception,要么用 catch 语句,要么直接用 throws 语句抛出去。 - Unchecked .....
分类:编程语言   时间:2014-12-19 11:26:12    阅读次数:212
DIY program ACM module with Ford VCM 2 IDS
I played around with the Ford IDS system for a coupe of year, it allowed me to do 90% what I expert. But I have not yet hook it up to program ACM modu...
分类:其他好文   时间:2014-12-17 15:55:33    阅读次数:788
中英文名句对照
You've got to find what you love. 你要找到你真正热爱的东西。 If you haven't found it yet, keep looking. Don't settle. 如果你还没有找到,请继续寻找!不要停下来! "If you live each day as if it was your last, someday you'll most...
分类:其他好文   时间:2014-12-17 09:09:21    阅读次数:164
jquery 多控件添加相同事件
例子:functioneasyControl(){ $("#startDate,#endDate").focus(function(){ $("#search").prop("checked",true); });}用作提醒自己,每次用都忘记怎么写。
分类:Web程序   时间:2014-12-16 19:27:24    阅读次数:143
jQuery 判断多个 input checkbox 中至少有一个勾选
html ( 使用 TP 标签 ) : {$htag}js:if($("input[class='helth_tag']:checked").length == 0){ alert("至少勾选一个健康标签!"); return false;}
分类:Web程序   时间:2014-12-15 21:35:23    阅读次数:218
04 jquery easyui 之 Tree
树(Tree)可以在一个空的<ul>元素中定义,可使用javascript加载数据。在body中添加ul标签<ulid="tt"></ul>然后在使用javascript代码加载数据使用JSON加载数据$(‘#tt‘).tree({url:‘treedata.json‘});树的数据格式(TreeDataFormat)每个节点可以包括下列属性..
分类:Web程序   时间:2014-12-15 06:35:43    阅读次数:298
jquery2.1.1 checkbox
htmljs> $("#v").prop('checked') $("#v").prop('checked',true) //选中]> $("#v").prop('checked') $("#v").prop('checked',false)//取消选中]> $("#v").prop('checke...
分类:Web程序   时间:2014-12-14 21:13:52    阅读次数:197
Jquery 获取 radio选中值
1.获取选中值,三种方法都可以:$('input:radio:checked').val();$("input[type='radio']:checked").val();$("input[name='rd']:checked").val();2.设置第一个Radio为选中值: $('input:r...
分类:Web程序   时间:2014-12-12 18:26:26    阅读次数:147
C#ListView控件添加复选框并获取选中的数目
1、添加复选框:listView1.CheckBoxes = true; 2、选中listview并获取选中的数目: private void listView1_ItemChecked(object sender, ItemCheckedEventArgs e) { e.Item.Selected = e.Item.Checked;...
分类:Windows程序   时间:2014-12-12 13:21:26    阅读次数:352
jquery1.11 操作checkbox:全选、取消全选、获取选择元素、获取取消选择元素(总结)
jquery1.11.1版本完成对checkbox的操作1. 使用属性prop设置选中状态2.使用:checked和:not(:checked)获取选中的元素源码:测试CheckBox 测试CheckBox 按钮1 按...
分类:Web程序   时间:2014-12-11 23:44:20    阅读次数:290
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!