各種input相關操作

2021-06-18 20:39:18 字數 604 閱讀 9269

1.radio

選擇被選中的radio

$("input:radio:checked")

2.select

選中指定value的option

$('select[name=select1] [value=1]').attr("selected",true)
注意上面**中有空格

3.checkbox

選中制定value的checkbox

$('input[name=invstyle][value="1"]').attr("checked","checked" );

被選中的個數

$("input[type=checkbox][name=invstyle][checked]").length

上面這種取個數的有時候不准,用下面這個

var arr_len = 0;

$('input[name=invstyle]').each(function()

})

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.onfocus 當input 獲取到焦點時觸發 2.onblur 當input失去焦點時觸發,注意 這個事件觸發的前提是已經獲取了焦點再失去焦點的時候會觸發相應的js 3.onchange 當input失去焦點並且它的value值發生變化時觸發 4.onkeydown 在 input中有鍵按住的...

jquery設定各種input指

獲取一組radio被選中項的值 var item input name items checked val 獲取select被選中項的文字 var item select name items option selected text select下拉框的第二個元素為當前選中值 select id ...