日期:2014-05-16 浏览次数:20313 次
1、置焦 $("#menuName_textbox").focus().select(); 单选框 <input type="radio"name="state_radio" value="ENABLED" id="state_yes" checked="checked" />销售 <input type="radio" name="state_radio" value="DISABLED" id="state_no" />禁售 取值: var state_radio = $("input[name='state_radio']:checked").val(); menu.state = state_radio; 赋值: $("input[name=state_radio][value=0]").attr("checked",true); 查看是否绑定事件 var tempE = $(“#foo”).data(“events”);if(tempE){if(tempE["click"] ){//your code}}