0
所以我需要更改bootstrap duallist插件,以便過濾器首先從鍵入的關鍵字中顯示最相關的選項。然後將過濾的選項方框內突出(這將文本的顏色是基於其相關性等)bootstrap雙列表 - 通過JavaScript手動選擇選項?
,直到我想選擇的選項,並放置到選定的盒子,它工作正常了。一旦選項被點擊,我嘗試使用jquery添加'selected'屬性。
var nonselectedBox = $("#bootstrap-duallistbox-nonselected-list_bundle")
nonselectedBox.find("option").removeAttr("selected");
$(this).find("li.selected").each(function() {
nonselectedBox.find("option[value='" + $(this).text() + "']")
.attr("selected", "selected");
});
這個工程,我可以看到所有的選項通過jQuery的DOM更改;但是一旦移動箭頭被按下,它就不會將選項添加到選定列表中。
我已經通過了文檔,但是沒有任何手動選擇選項的功能。那我該怎麼做?