文本框,文本区域: 获取值: 1、$("#txt").attr("value"); 2、 $("txt").val(); 单选按钮: 获取值: $("input[name='radio']:checked").val(); 判断是否选中: radio_check=false; $("input[name='sex']").each(function(){ if($(this).attr("checked")){ radio_check=true; } }); if(!radio_check){ alert("radio框必须选择"); return false; } 多选按钮: 获取值: var chk_value =[]; $("input[name='checkbox']:checked").each(function(){ chk_value.push($(this).val()); }); 判断是否选中: checkbox_check=false; $("input[name='type']").each(function(){ if($(this).attr("checked")){ checkbox_check=true; } }); if(!checkbox_check){ alert("复选框必须选择"); return false; } 下拉菜单: 获取值: 1、$("#testSelect option:selected").text(); 2、$("#testSelect").find("option:selected").text(); 3、$("#testSelect").val(); 事件绑定: $("#testSelect").change(function(){ //你想要的代码 }); 获取选中的索引: $("#testSelect").get(0).selectedIndex; $("#testSelect option:selected").index();