jquery radio,select相關操作

2021-09-25 08:10:41 字數 2159 閱讀 3776

1.獲取選中值,三種方法都可以:

$('input:radio:checked').val();

$("input[type='radio']:checked").val();

$("input[name='rd']:checked").val();

2.設定第乙個radio為選中值:

$('input:radio:first').attr('checked', 'checked');

或者$('input:radio:first').attr('checked', 'true');

注:attr("checked",'checked')= attr("checked", 'true')= attr("checked", true)

3.設定最後乙個radio為選中值:

$('input:radio:last').attr('checked', 'checked');

或者$('input:radio:last').attr('checked', 'true');

4.根據索引值設定任意乙個radio為選中值:

$('input:radio').eq(索引值).attr('checked', 'true');索引值=0,1,2....

或者$('input:radio').slice(1,2).attr('checked', 'true');

5.根據value值設定radio為選中值

$("input:radio[value='rd2']").attr('checked','true');

或者$("input[value='rd2']").attr('checked','true');

6.刪除value值為rd2的radio

$("input:radio[value='rd2']").remove();

7.刪除第幾個radio

$("input:radio").eq(索引值).remove();索引值=0,1,2....

如刪除第3個radio:$("input:radio").eq(2).remove();

8.遍歷radio

$('input:radio').each(function(index,domele){

//寫入**

1.   獲取選中項:

獲取選中項的value值:

$('select#sel option:selected').val();

或者$('select#sel').find('option:selected').val();

獲取選中項的text值:

$('select#seloption:selected').text();

或者$('select#sel').find('option:selected').text();

2.   獲取當前選中項的索引值:

$('select#sel').get(0).selectedindex;

3.   獲取當前option的最大索引值:

$('select#sel option:last').attr("index")

4.   獲取dropdownlist的長度:

$('select#sel')[0].options.length;

或者$('select#sel').get(0).options.length;

5.  設定第乙個option為選中值:

$('select#sel option:first').attr('selected','true')

或者$('select#sel')[0].selectedindex = 0;

from:

mysql相關操作 MySQL之記錄相關操作

一 介紹 mysql資料操作 dml 在mysql管理軟體中,可以通過sql語句中的dml語言來實現資料的操作,包括 使用insert實現資料的插入 update實現資料的更新 使用delete實現資料的刪除 使用select查詢資料以及。本節內容包括 插入資料 更新資料 刪除資料 查詢資料 二 插...

excel 相關簡便操作 之 vlookup 操作

準備工作 提取excel括號前的值 left b2,find b2 1 提取excel括號中的值 trim right substitute substitute b2,rept 10 rept 10 20 下圖表a中取length 從表a到表b,有乙個 值複製 的動作 使用vlookup 下圖表c...

Docker 系列二 docker 映象相關操作

1.載乙個 ubuntu 的基礎映象 2.利用映象建立乙個容器,在其中執行 bash 應用 4.使用 tag 命令新增映象標籤,類似於鏈結的作用,標籤不同,id 不同,指向同一目標 docker tag ubuntu latest myubuntu latest 5.使用 docker inspec...