網頁制作poluoluo文章簡介:JQuery獲取表單值.
獲取一組radio被選中項的值
var item = $(’input[@name=items][@checked]‘).val();
獲取select被選中項的文本
var item = $(”select[@name=items] option[@selected]“).text();
select下拉框的第二個元素為當前選中值
$(’#select_id’)[0].selectedIndex = 1;
radio單選組的第二個元素為當前選中值
$(’input[@name=items]‘).get(1).checked = true;
獲取值:
文本框,文本區域:$(”#txt”).attr(”value”);
多選框checkbox:$(”#checkbox_id”).attr(”value”);
單選組radio: $(”input[@type=radio][@checked]“).val();
下拉框select: $(’#sel’).val();
控制表單元素:
文本框,文本區域:$(”#txt”).attr(”value”,”);//清空內容
$(”#txt”).attr(”value”,’11′);//填充內容
多選框checkbox: $(”#chk1″).attr(”checked”,”);//不打勾
$(”#chk2″).attr(”checked”,true);//打勾