您好,登錄后才能下訂單哦!
怎么在jquery中操作select?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
$("#select_id").change(function(){//code...}); //為Select添加事件,當選擇其中一項時觸發 var checkText=$("#select_id").find("option:selected").text(); //獲取Select選擇的Text var checkValue=$("#select_id").val(); //獲取Select選擇的Value var checkIndex=$("#select_id ").get(0).selectedIndex; //獲取Select選擇的索引值 var maxIndex=$("#select_id option:last").attr("index"); //獲取Select最大的索引值 jQuery設置Select選擇的Text和Value:
$("#select_id ").get(0).selectedIndex=1; //設置Select索引值為1的項選中 $("#select_id ").val(4); //設置Select的Value值為4的項選中 $("#select_id option[text='jQuery']").attr("selected", true); //設置Select的Text值為jQuery的項選中
對第二種情況,刪除的處理:
$("#select_id option:last").remove(); //刪除Select中索引值最大Option(最后一個) $("#select_id option[index='0']").remove(); //刪除Select中索引值為0的Option(第一個) $("#select_id option[value='3']").remove(); //刪除Select中Value='3'的Option $("#select_id option[text='4']").remove(); //刪除Select中Text='4'的Option
如果要刪除選中的option ,則需要先得到 選中option 的序號. var checkIndex=$("#select_id ").get(0).selectedIndex;
然后再調用上面的方法刪除.
對第三種情況,增加option 的處理:
$("#select_id").append("<option value='Value'>Text</option>"); //為Select追加一個Option(下拉項) $("#select_id").prepend("<option value='0'>請選擇</option>"); //為Select插入一個Option(第一個位置)
對第四種情況,得到select 的長度
var totalcount=$("#single_user_choice").get(0).options.length;
第五種情況,清空select
$("#single_user_choice").get(0).options.length=0;
第六種情況。兩個select 框之間互相添加刪除,從左邊到右邊,從右邊到左邊的操作,通常是多選情況,也就是設置了 multiple="multiple" 。
var $options = $('#select1 option:selected');//獲取當前選中的項 var $remove = $options.remove();//刪除下拉列表中選中的項 $remove.appendTo('#select2');//追加給對方
第七種情況,判斷在select 是否存在某個value 的 option
function is_Exists(selectid,value){ var theid='#'+selectid; var count=$(theid).get(0).options.length; var isExist = false; for(var i=0;i<count;i++){ if ($(theid).get(0).options[i].value == value){ isExist=true; break; } } return isExist; }
jquery是一個簡潔而快速的JavaScript庫,它具有獨特的鏈式語法和短小清晰的多功能接口、高效靈活的css選擇器,并且可對CSS選擇器進行擴展、擁有便捷的插件擴展機制和豐富的插件,是繼Prototype之后又一個優秀的JavaScript代碼庫,能夠用于簡化事件處理、HTML文檔遍歷、Ajax交互和動畫,以便快速開發網站。
關于怎么在jquery中操作select問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。