jquery設定各種input指

2021-08-09 19:26:24 字數 1519 閱讀 6781

獲取一組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");

$("#txt").val();

多選框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

2222")

$("#sel").empty();//清空下拉框

在jquery中,用$("#id")來獲得頁面的input元素,其相當於document.getelementbyid("element")但是,該獲取的是乙個jquery物件,而不是乙個dom element物件.value是dom element物件的屬性.所以,使用$("#id").value不能取到值取值的方法如下:

取值:

val = $("#id")[0].value;

$("#id")[0].value = "new value";

賦值:

$("#id")[0].value = "new value";

或者$("#id").val("new value");

val = $("#id").attr("value");

Jquery獲取 設定各種input元素的值

radio按鈕 input name kstype checked val name kstype 的radio按鈕集合中被選中的那個radio的value 文字框 var str txtname val 獲得文字框的值 txtname focus function 文字框獲取焦點 txtname ...

input 各種限制

參考 1 只能輸入數字和字母 0 9a za z g.test shouiji 車牌號 銀行卡 2 只能輸入數字 1 3 4 5 7 8 0 9 d test patal 號碼 3 只能輸入子母和漢字 var reg a za z u4e00 u9fa5 姓名 4 只輸入漢字 var pattern...

各種input相關操作

1.radio 選擇被選中的radio input radio checked 2.select 選中指定value的option select name select1 value 1 attr selected true 注意上面 中有空格 3.checkbox 選中制定value的checkb...