获得焦点
$(".a").focus(function(){alert("你选中我啦!")})
失去焦点
$(".a").blur(function(){alert("你怎么去选别人啦")})
单选按钮
选中特定单选按钮
$('[name="item"]:radio').each(function() {
if (this.value == 'B') {
this.checked = true;
}
});
取单选按钮的值
var_name = $(“input[name='radio_name']:checked”).val();
下拉菜单
取选中的下拉菜单的值
user_type = $("select[name='user_type']").val();