//文字框,文字區域:
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")
; ***************
/*獲取下拉列表的值*/
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
test2")
.("#select_id")
//新增下拉框的option $
("#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
());
jqueryajax呼叫常用方法
$(document).ready(
function()
else
else}}
);}});});
對使用者控制項的一些理解
在 asp.net 中 使用與 asp.net 頁相同的語法,以宣告方式創作的伺服器控制項。該控制項用 ascx 副檔名儲存為文字檔案。使用者控制項允許對頁功能進行分割槽和重用。第一次請求時,頁框架立即將使用者控制項分析為從system.web.ui.usercontrol 派生的類,並將該類編譯到...
JQuery對CheckBox的一些相關操作
一 通過選擇器選取checkbox 1.給checkbox設定乙個id屬性,通過id選擇器選取 inputtype checkbox name mybox id chkone value 1 checked checked jquery chkone click function 2.給checkb...
JQuery對CheckBox的一些相關操作
一 通過選擇器選取checkbox 1.給checkbox設定乙個id屬性,通過id選擇器選取 inputtype checkbox name mybox id chkone value 1 checked checked jquery chkone click function 2.給checkb...