摘要: jquery給基本控制項的取值、賦值 textbox: var str = $('#txt').val(); $('#txt').val("set lbl value"); //文字框,文字區域: $("#text_id").attr("value",'');//清空內容 $("#text_id").attr("value",'test');// 填充內容
jquery給基本控制項的取值、賦值
textbox:
var str = $('#txt').val();
$('#txt').val("set lbl value");
//文字框,文字區域:
$("#text_id").attr("value",'');//清空內容
$("#text_id").attr("value",'test');// 填充內容
lable:
var str = $('#lbl').text();
$('#lbl').text("set lbl value");
var valradio = $("input[@type=radio][@checked]").val();
var item = $('input[@name=items][@checked]').val();
var checkboxval = $("#checkbox_id").attr("value");
var selectval = $('#select_id').val();
//多選框checkbox:
$("#chk_id").attr("checked",'');//使其未勾選
$("#chk_id").attr("checked",true);// 勾選
if($("#chk_id").attr('checked')==true) //判斷是否已經選中
單選組radio:
$("input[@type=radio]").attr("checked",'2'); //設定value=2的專案為當前選中項
//下拉框select:
$("#select_id").attr("value",'test');// 設定value=test的專案為當前選中項
$("test
$("#select_id").empty();//清空下拉框
獲取一組名為 (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());
摘要: jquery給基本控制項的取值、賦值 textbox: var str = $('#txt').val(); $('#txt').val("set lbl value"); //文字框,文字區域: $("#text_id").attr("value",'');//清空內容 $("#text_id").attr("value",'test');// 填充內容
jquery給基本控制項的取值、賦值
textbox:
var str = $('#txt').val();
$('#txt').val("set lbl value");
//文字框,文字區域:
$("#text_id").attr("value",'');//清空內容
$("#text_id").attr("value",'test');// 填充內容
lable:
var str = $('#lbl').text();
$('#lbl').text("set lbl value");
var valradio = $("input[@type=radio][@checked]").val();
var item = $('input[@name=items][@checked]').val();
var checkboxval = $("#checkbox_id").attr("value");
var selectval = $('#select_id').val();
//多選框checkbox:
$("#chk_id").attr("checked",'');//使其未勾選
$("#chk_id").attr("checked",true);// 勾選
if($("#chk_id").attr('checked')==true) //判斷是否已經選中
單選組radio:
$("input[@type=radio]").attr("checked",'2'); //設定value=2的專案為當前選中項
//下拉框select:
$("#select_id").attr("value",'test');// 設定value=test的專案為當前選中項
$("test
$("#select_id").empty();//清空下拉框
獲取一組名為 (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());
jquery對控制項取值
獲取一組radio被選中項的值 var item input name items checked val 獲取select被選中項的文字 var item select name items option selected text select下拉框的第二個元素為當前選中值 select id ...
jquery 與 html 取值混淆
下面都是正確的 但是 我之前的錯誤是 比如想取value值吧 可能這樣搞 thisbutton value得不到 然後想取前面乙個元素 用 thisbutton.prev 也得不到 屬於jquery的操作分別是便利 取值 文件操作等所以都要用 thisbutton deletrow this 傳進去...
Jquery元素選取及取值
一 常用的選擇器 id 通過id 返回單個元素 div 通過標籤 cls 類選擇器 div.cls 標籤加類選擇器 選取所有的元素 this 自己 div,p,a 取得所有標籤的集合 div p div下的所有,不管幾層 子孫 div p 獲取最直接的p 兒子 div p 兄弟節點中下面的第乙個元素...