【核取方塊操作】
需要代買蔬菜
需要清洗餐具
1)改變選中checkbox時執行
$(
'#checkbox_id'
).change(
function
() );
$(
'#checkbox_id'
).click(
function
() );
2)迴圈取所有的checkbox的值
$(
'input[name="checkbox_id"]:checked'
).each(
function
()
if
($(
this
).val() ==
"需要清洗餐具"
)
});
【單選按鈕操作】
$(
"input:radio[@name='radio_id']"
).change(
function
()
【輸入框操作】
1)失去焦點
$(
'#input_id'
).blur(
function
() );
2)取值/賦值
$(
'#input_id'
).val();
$(
'#input_id'
).val(
"***"
);
【下拉框操作】
//服務大類和小類選擇列表
$(document).ready(
function
()
if
(values ==
"育兒"
)
});
});
//下拉框重新定位到預設的選項上,selectedindex = 0 為第一項值
$(
'#option_id'
)[0].selectedindex = 0;
jquery常用操作
操作下拉列表 新增選項列表 this get 0 options.add new option text,value 清空列表 this get 0 options.length 0 刪除指定索引的選項 this get 0 remove index 設定需要選中項的值 this get 0 val...
JQuery常用操作
遍歷option和新增 移除option function changeshipmethod shipping else 取得下拉列表的選取值 testselect option selected text 或 testselect find option selected text 或 tests...
jQuery常用外掛程式總結
ui jquery.hooray 哈哈,自己寫的外掛程式是必須有的 jquery ui 官方的ui外掛程式,功能很多,但我只用少數幾個 jquery easyui jquery ligerui 對話方塊 artdialog 很欣賞這個外掛程式,又強大又美觀 asyncbox 製作者小吳同學也是的人呢...