0
使用http://crlcu.github.io/multiselect/ '&'から '選択'にプログラムで「リセット」できません。さて、これは初めてのことですが、その後は失敗します。JQuery MultiSelectプログラムによる選択
これのためのフィドルはhttps://jsfiddle.net/24690u7c/です。 &を問題なく移動することができます。初めて「リセット」ボタンを押すとすべてが機能します。それ以降のリセットは失敗します。リセット機能は、以下を行います。
- 移動右
に左に右
ここで私が何が欠けているか教えていただけますか?
$("#resetDefaults").on("click", function(event) {
$('#multiselect_leftAll').trigger('click'); // all to the left
$("#multiselect option").each(function() {
if ($(this).val() == "A" || $(this).val() == "B") {
$(this).attr('selected', true); // select what should be on the right
} // ... this is I think the issue :-(
});
$('#multiselect_rightSelected').trigger('click'); // move the selected right
});