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");
/*獲取單選按鈕的值*/
varvalradio
= $(
"input[@type=radio][@checked]")
.val();
/*獲取一組名為(items)的radio被選中項的值*/
varitem
= $(
'input[@name=items][@checked]')
.val();
/*獲取核取方塊的值*/
varcheckboxval
= $(
"#checkbox_id")
.attr("
value")
;/*獲取下拉列表的值*/
varselectval
= $(
'#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
test2")
.("#select_id")
//新增下拉框的option$(
"#select_id")
.empty();
//清空下拉框
獲取一組名為
(items)的
radio
被選中項的值
varitem
= $(
'input[@name=items][@checked]')
.val();
//若未被選中 則val() = undefined
獲取select
被選中項的文字
varitem
= $(
"select[@name=items] option[@selected]")
.text();
select
下拉框的第二個元素為當前選中值$(
'#select_id')[
0].selectedindex= 1
;radio
單選組的第二個元素為當前選中值$(
'input[@name=items]')
.get(1
).checked
= true
;//重置表單$(
"form")
.each
(function
());
//文字框,文字區域:$(
"#text_id")
.attr("
value",
'');//清空內容$(
"#text_id")
.attr("
value",
'test')
;//填充內容
lable:
var str = $('#lbl').text();
$('#lbl').text("set lbl value");
/*獲取單選按鈕的值*/
varvalradio
= $(
"input[@type=radio][@checked]")
.val();
/*獲取一組名為(items)的radio被選中項的值*/
varitem
= $(
'input[@name=items][@checked]')
.val();
/*獲取核取方塊的值*/
varcheckboxval
= $(
"#checkbox_id")
.attr("
value")
;/*獲取下拉列表的值*/
varselectval
= $(
'#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
test2")
.("#select_id")
//新增下拉框的option$(
"#select_id")
.empty();
//清空下拉框
獲取一組名為
(items)的
radio
被選中項的值
varitem
= $(
'input[@name=items][@checked]')
.val();
//若未被選中 則val() = undefined
獲取select
被選中項的文字
varitem
= $(
"select[@name=items] option[@selected]")
.text();
select
下拉框的第二個元素為當前選中值$(
'#select_id')[
0].selectedindex= 1
;radio
單選組的第二個元素為當前選中值$(
'input[@name=items]')
.get(1
).checked
= true
;//重置表單$(
"form")
.each
(function
());
Jquery給基本控制項的取值 賦值
jquery給基本控制項的取值 賦值 與 textbox var str txt val txt val set lbl value 文字框,文字區域 text id attr value 清空內容 text id attr value test 填充內容 lable var str lbl tex...
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 va...
jquery對控制項取值
獲取一組radio被選中項的值 var item input name items checked val 獲取select被選中項的文字 var item select name items option selected text select下拉框的第二個元素為當前選中值 select id ...