您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關jQuery選擇性移除列表框的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
jQuery選擇性移除列表框的方法:綁定向左的方向建按鈕的click事件,當單擊按鈕時,右側列表框選中的項會添加到左側列表框中,完成移除的操作,代碼為【$(this).remove().appendTo(leftSel)】。
jQuery選擇性移除列表框的方法:
本文將用實例來講解使用jQuery實現左右列表框的操作,主要有以下效果:
1、通過左右按鈕向右側列表框添加項或移除項操作。
2、通過雙擊兩邊列表框里的項可以進行添加或移除項。
3、獲取右側列表框里的選項值。
<div class="select_side"> <p>待選區</p> <select id="selectL" name="selectL" multiple="multiple"> <option value="13800138000">王新安 - 13800138000</option> <option value="13800138001">李密 - 13800138001</option> <option value="13800138002">姜瑜 - 13800138002</option> <option value="13800138002">錢書記 - 13800138004</option> </select> </div> <div class="select_opt"> <p id="toright" title="添加">></p> <p id="toleft" title="移除"><</p> </div> <div class="select_side"> <p>已選區</p> <select id="selectR" name="selectR" multiple="multiple"> </select> </div> <div class="sub_btn"><input type="button" id="sub" value="getValue" /></div>
頁面由左右兩個列表框以及操作按鈕項組成。通過CSS來控制三者并排一行。
CSS
.select_side{float:left; width:200px} select{width:180px; height:120px} .select_opt{float:left; width:40px; height:100%; margin-top:36px} .select_opt p{width:26px; height:26px; margin-top:6px; background:url(arr.gif) no-repeat; cursor:pointer; text-indent:-999em} .select_opt p#toright{background-position:2px 0} .select_opt p#toleft{background-position:2px -22px}
我設置了兩個列表框都左浮動float:left,同時將操作按鈕項也左浮動,主要就使得三者橫向排列。值得注意是,在設置操作按鈕時,我使用了一張背景圖片,這張圖片包括了左右兩個方向箭頭的按鈕,如下圖,然后通過background-position
來定位圖片的位置,這個方法目前已經在很多網站中得到應用。
jQuery
首先,綁定向右的方向建按鈕的click事件,當單擊按鈕時,左側列表框選中的項會添加到右側列表框中,完成添加的操作。
var leftSel = $("#selectL"); var rightSel = $("#selectR"); $("#toright").bind("click",function(){ leftSel.find("option:selected").each(function(){ $(this).remove().appendTo(rightSel); }); });
同樣,綁定向左的方向建按鈕的click事件,當單擊按鈕時,右側列表框選中的項會添加到左側列表框中,完成移除的操作。
$("#toleft").bind("click",function(){ rightSel.find("option:selected").each(function(){ $(this).remove().appendTo(leftSel); }); });
接下來,需要完成雙擊選擇事件,當雙擊該項時,該項立即從該列表框中移除,并添加到與之相對的列表框中。
leftSel.dblclick(function(){ $(this).find("option:selected").each(function(){ $(this).remove().appendTo(rightSel); }); }); rightSel.dblclick(function(){ $(this).find("option:selected").each(function(){ $(this).remove().appendTo(leftSel); }); });
關于jQuery選擇性移除列表框的方法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。