$('input[@type=radio][name=existdire]').get(1).checked = true; 設定name為existdire的單選按鈕的第二個元素為選中狀態
function get_form_value()
//控制表單元素:
//文字框,文字區域:
$("#text_id").attr("value",'');//清空內容
$("#text_id").attr("value",'test');//填充內容
//多選框checkbox:
$("#chk_id").attr("checked",'');//未選中的值
$("#chk_id").attr("checked",true);//選中的值
if($("#chk_id").attr('checked')==undefined) //判斷是否已經選中
//單選組radio:
$("input[@type=radio]").attr("checked",'10');//設定value=10的單選按鈕為當前選中項
//下拉框select:
$("#select_id").attr("value",'test');//設定value=test的專案為當前選中項
$("test
$("#select_id").empty();//清空下拉框
獲取一組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);//打勾
if($("#chk1").attr('checked')==undefined) //判斷是否已經打勾
單選組radio: $("input[@type=radio]").attr("checked",'2');//設定value=2的專案為當前選中項
下拉框select: $("#sel").attr("value",'-sel3');//設定value=-sel3的專案為當前選中項
$("1111
$("#sel").empty();//清空下拉框
jQuery HTML操作學習
b jquery html 操作 b jquery 包含很多供改變和操作 html 的強大函式。b 改變 html 內容 b 語法 selector html content html 函式改變所匹配的 html 元素的內容 innerhtml 例項 p html w3school b 新增 htm...
控制項的 jquery 操作
由於jquery的版本更新很快,的寫法也改變了許多,以下jquery 適query1.4版本以上 1.獲取選中值,三種方法都可以 input radio checked val input type radio checked val input name rd checked val 2.設定第乙...
ListBox控制項的操作
items的相關使用方法 1 往listbox中新增乙個資料 listbox.items.add 資料1 2 往listbox中新增多個資料集合 string list new string listbox.items.addrange list 3 在listbox指定位置插入乙個新值 listb...