$("checkAll").click(function(){ if($("#checkAll").is(":checked")){ $("[name = items]:checkbox").attr("checked",true); }else{ $("[name = items]:checkbo ...
分类:
Web程序 时间:
2016-05-09 18:21:20
阅读次数:
149
Install: Init: Script: Check the src folder. Add mark to the file which you want to check: function to be checked: When the flow runs, it will report ...
分类:
编程语言 时间:
2016-05-07 17:59:39
阅读次数:
197
$('input[name="sotype"]:checked').val();//获取选中的值 ...
分类:
Web程序 时间:
2016-05-07 12:56:03
阅读次数:
187
一直很好奇双击ddk的Checked/free Build Environment跳出的cmd对话框能运行build编译驱动(其实App也行),直接用cmd运行build,却提示找不到可运行的命令。开始时,怀疑环境变量Path没有包含build所在的路径导致不能工作,可是向Path追加了build的路径,虽然可以执行build但仍然不能生成sys。
于是换个思路驱动程序所在的目录下都少不...
分类:
其他好文 时间:
2016-05-07 08:48:49
阅读次数:
507
兄弟文章: http://blog.csdn.net/libin_1/article/details/50734967方法一:
if ($("#checkbox-id").get(0).checked) {
// do something
}方法二:
if($('#checkbox-id').is(':checked')) {
// do something
}方法三:
if ($(...
分类:
Web程序 时间:
2016-05-07 07:47:38
阅读次数:
191
一.单选按钮 1.单选组 RadioGroup 2.单选按钮 RadioButton 1>text 显示文字 2>checked 选中状态 true(选中)或false(未选中);注意必须要添加id。 3.事件监听 1>OnCheckedChangeListener() 选中状态改变 2>OnChe ...
分类:
其他好文 时间:
2016-05-07 00:55:02
阅读次数:
314
1、$(function(){ 等价于 window.onload=function(){ }) } 2、$("#Text1").val 获取ID号为Text1的值。 3、$("#Text1").is(":checked") ID号为text1的按钮是否被选中 4、addClass() 将指定的按钮 ...
分类:
Web程序 时间:
2016-05-06 23:04:01
阅读次数:
209
[1]
Insert a Disc in DVD drive and reboot computer. First, Following screen is shown, then push Enter key.
[2]
Following screen is shown, DVD is Checked in this section. It's s...
分类:
其他好文 时间:
2016-05-06 15:12:10
阅读次数:
154
[1]
Insert a Disc in DVD drive and reboot computer. First, Following screen is shown, then push Enter key.
[2]
Following screen is shown, DVD is Checked in this section. It's s...
分类:
其他好文 时间:
2016-05-06 13:10:54
阅读次数:
363
表单元素选择器 选择器 说明 :button <button>元素和type属性值为button的<input>元素。 :checkbox type属性值为checkbox的<input>元素。使用$([type="checkbox"])能获得更高的性能。 :checked 选中的单选按钮和复选框元 ...
分类:
Web程序 时间:
2016-05-03 23:33:52
阅读次数:
233