/得到TEXT.AREATEXT的值/ var textval = $("#text_id").attr("value"); //或者 var textval = $("#text_id").val();app
/獲取單選按鈕的值/ var valradio = $("input[type=radio]:checked").val();orm
/獲取一組名爲(items)的radio被選中項的值/ var item = $('input[name=items]:checked').val();get
/獲取複選框的值/ var checkboxval = $("#checkbox_id").attr("value");input
/獲取下拉列表的值/ var selectval = $('#select_id').val();it
/文本框,文本區域/ $("#text_id").attr("value",");//清空內容 $("#text_id").attr("value",'test');//填充內容io
/多選框checkbox/ $("#chk_id").attr("checked",");//使其未勾選 $("#chk_id").attr("checked",true);//勾選 if($("#chk_id").attr('checked')==true) //判斷是否已經選中function
/單選組radio/ $("input[type=radio]").attr("checked",'2');//設置value=2的項目爲當前選中項form
/下拉框select/ $("#select_id").attr("value",'test');//設置value=test的項目爲當前選中項 $("testtest2").appendTo("#select_id")//添加下拉框的option $("#select_id").empty();//清空下拉框test
/獲取一組名爲(items)的radio被選中項的值/ var item = $('input[name=items]:checked').val(); //若未被選中 則val() = undefined表單
/獲取select被選中項的文本/ var item = $("select[name=items] option:selected").text();
/select下拉框的第二個元素爲當前選中值/ $('#select_id')[0].selectedIndex = 1;
/radio單選組的第二個元素爲當前選中值/ $('input[name=items]').get(1).checked = true;
/重置表單/ $("form").each(function(){ .reset();