Java包含两种异常:checked异常和unchecked异常。C#只有unchecked异常。checked和unchecked异常之间的区别是:Checked异常必须被显式地捕获或者传递,如Basic try-catch-finally Exception Handling一文中所说。而unc...
分类:
编程语言 时间:
2014-10-06 00:50:49
阅读次数:
384
饭否<!-- We are troubled on every side, yet not distressed; we are perplexed, but not in despair; Persecuted, but not forsaken; cast down, but not destr...
分类:
Web程序 时间:
2014-10-04 18:21:56
阅读次数:
286
转自:http://blog.csdn.net/limingchuan123456789/article/details/11499665jquery判断checked的三种方法:.attr('checked): //看版本1.6+返回:”checked”或”undefined” ;1.5-返回:....
分类:
Web程序 时间:
2014-09-30 22:47:00
阅读次数:
237
html页面内容:1.获取下拉框的内容根据input类别获取下拉框var k = $("input[type='checkbox']:checked").length;根据input name 获取下拉框var k = $("input[name='checkboxname']:checked")....
分类:
其他好文 时间:
2014-09-30 20:14:20
阅读次数:
152
在使用jquery操作checkbox时,发现全选之后,多点几次就没有反应了,如一般我们使用: $(‘obj‘).attr(‘checked‘,true); 经过查找资料后,发现以下方法可以解决: $(‘obj‘).prop(‘checked‘,true);...
分类:
Web程序 时间:
2014-09-28 16:09:53
阅读次数:
170
Javascript var values = $('#datatable input.gid:checked').map(function () { return $(this).attr('gid'); }).get(); $.ajax...
分类:
Web程序 时间:
2014-09-25 14:31:29
阅读次数:
155
Description, check and repair of MyISAM tables.Used without options all tables on the command will be checked for errorsUsage: myisamchk [OPTIONS] tab...
分类:
数据库 时间:
2014-09-24 15:17:37
阅读次数:
315
var banuid =[];//定义一个数组 $('input[name="banuid[]"]:checked').each(function(){//遍历每一个名字为interest的复选框,其中选中的执行函数 banuid.push($(this).val());//将选中的值添加到数组ch...
分类:
Web程序 时间:
2014-09-24 13:06:06
阅读次数:
215
项目根目录有两个文件:
1.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 Contr...
分类:
移动开发 时间:
2014-09-24 12:33:26
阅读次数:
248
设置radio为选中状态:$("#ownId").attr("checked",true);但此方法在IE6、IE7下不起作用。在网上搜索了很多解决方案,无果。现找到一个简易的方法解决该问题。原来IE6、IE7下控制选中状态的属性为“defaultChecked”。修改代码如下:$("#ownId"...
分类:
Web程序 时间:
2014-09-23 19:44:45
阅读次数:
169