jquery設定下拉框selected不起作用

2021-09-30 13:43:55 字數 364 閱讀 7387

在js中設定下拉框被選中:

最初寫法:

//移出selected

$("#selected option").removeattr("selected");

//將value值為value的設為selected

$("#selected").find("option[value="+value+"]").attr("selected",true);

來回切換幾次後發現selected不起作用了。

上網查詢原來是瀏覽器相容性的問題:將寫法改為以下的寫法就可以了

$("#selected").find("option[value="+value+"]").prop("selected",true);

jquery 下拉框 收藏

jquery 下拉框 jquery radio取值,checkbox取值,select取值,radio選中,checkbox選中,select選中,及其相關 獲 取一組radio被選中項的值 var item input name items checked val 獲 取select被選中項的文字...

jquery獲取下拉框的值 設定下拉框的值

獲取select 獲取select 選中的 text ddlregtype find option selected text 獲取select選中的 value ddlregtype val 獲取select選中的索引 ddlregtype get 0 selectedindex 設定select...

jQuery 獲取和設定select下拉框的值

獲取select 獲取select 選中的 text ddlregtype find option selected text 獲取select選中的 value ddlregtype val 獲取select選中的索引 ddlregtype get 0 selectedindex 設定select...