js控制select選中顯示不同表單內容

2021-10-21 14:20:58 字數 1143 閱讀 6266

獲取select 選中的option的值:

$("#ddlregtype").find(「option:selected」).val();

獲取select 選中的 text :

$("#ddlregtype").find(「option:selected」).text();

獲取select選中的 value:

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

獲取select選中的索引:

$("#ddlregtype ").get(0).selectedindex;

設定select:

設定select 選中的索引:

$("#ddlregtype ").get(0).selectedindex=index;//index為索引值
設定select 選中的value:

$("#ddlregtype ").attr("value","normal「);

$("#ddlregtype ").val("normal");

$("#ddlregtype ").get(0).value = value;

設定select 選中的text:

var count=$("#ddlregtype option").length;

for(var i=0;i$("#select_id option[text=『jquery』]").attr(「selected」, true);

設定select option項:

$("#select_id").prepend(「請選擇」); //在前面插入一項option

$("#select_id option:last").remove(); //刪除索引值最大的option

$("#select_id option[index=『0』]").remove();//刪除索引值為0的option

$("#select_id option[value=『3』]").remove(); //刪除值為3的option

$("#select_id option[text=『4』]").remove(); //刪除text值為4的option

清空 select:

$("#ddlregtype ").empty();

JQuery控制radio選中和不選中方法

一 設定選中方法 input name 名字 get 0 checked true input name 名字 attr checked true input name 名字 eq 0 attr checked checked input name radio name checked val 獲取...

JQuery控制radio選中和不選中方法總結

一 設定選中方法 如下 input name 名字 get 0 checked true input name 名字 attr checked true input name 名字 eq 0 attr checked checked input name radio name checked val...

js如何判斷select是否選中

1.判斷內容為空的函式 function checkempty field,fieldtitle return true 2.判斷內容是否為數字,並且為整數的函式 function checkinteger field,fieldtitle return true 3.判斷內容是否為數字,並且為小數...