1、E:target 表示当前的URL片段的元素类型,这个元素必须是E 2、E:disabled 表示不可点击的表单控件 E:enabled 表示可点击的表单控件 3、E:checked 表示已选中的checkbox或radio 4、E:first-line 表示E元素中的第一行 5、E:first ...
分类:
Web程序 时间:
2017-01-12 08:03:06
阅读次数:
237
Non-quasi Static (NQS) Model An non-quasi-static (NQS) model is desirable in some mixed signal IC and radio frequency (RF) applications. For long chan ...
分类:
其他好文 时间:
2017-01-11 14:30:41
阅读次数:
196
文本框:textInput(); 密码框:passwordInput(); 单选框:radio(),radioList(); 复选框:checkbox(),checkboxList(); 下拉框:dropDownList(); 隐藏域:hiddenInput(); 文本域:textarea(['ro... ...
分类:
Web程序 时间:
2017-01-10 13:39:55
阅读次数:
207
var val=$('input:radio[name="sex"]:checked').val(); 附三种方法都可以: $('input:radio:checked').val(); $("input[type='radio']:checked").val(); $("input[name='r ...
分类:
Web程序 时间:
2017-01-09 15:11:48
阅读次数:
207
radio的change事件 1 2来自为知笔记(Wiz) ...
分类:
其他好文 时间:
2017-01-09 11:32:31
阅读次数:
264
<input type="radio" name="radio" value="1">单选1 <input type="radio" name="radio" value="2">单选2 <input type="radio" name="radio" value="3" checked& ...
分类:
Web程序 时间:
2017-01-04 10:57:46
阅读次数:
177
文本框:textInput(); 密码框:passwordInput(); 单选框:radio(),radioList(); 复选框:checkbox(),checkboxList(); 下拉框:dropDownList(); 隐藏域:hiddenInput(); 文本域:textarea(['ro ...
分类:
其他好文 时间:
2016-12-30 15:23:06
阅读次数:
185
匹配所有单选按钮 匹配所有单选按钮 示例 描述: 查找所有单选按钮 HTML 代码: <form> <input type="text" /> <input type="checkbox" /> <input type="radio" /> <input type="image" /> <input ...
分类:
其他好文 时间:
2016-12-30 13:31:41
阅读次数:
156