select下拉列表的选中方法是:$("slect option:eq(1)").attr("selected",true);//选中第二个option
chekBox的选中方法:$("[value=check1"]:checkBox).attr("checked",true);
radio的选中方法:$("[value=radio2"]:radio).attr("checked",true);
代码: