jQuery Chosen - 更新选择列表而不丢失选择

2022-01-11 00:00:00 jquery jquery-plugins javascript

我正在尝试使用 jQuery 插件Chosen"

I'm trying to use jQuery plugin "Chosen"

(http://harvesthq.github.com/chosen/ 和 https://github.com/harvesthq/chosen)

在我的项目中.

我想要实现的是基于用户选择的更新列表(ajax 调用(tree based structure))

What I'm trying to achieve is update list basing on user selection (ajax call (tree based structure))

这不是更大的问题,因为我可以使用 .chosen().change(function()) 并删除所有未使用的选择项,然后 .append 新的.

This is no bigger problem, because i can use .chosen().change(function()) and remove all unused select items and then .append new ones.

然后我可以使用 .trigger("liszt:updated") 更新列表,但不幸的是所有选择都被删除了..

Then I can use .trigger("liszt:updated") to update list, but unfortunately all selections are deleted..

有谁知道如何在不丢失所选数据的情况下更新所选列表?

Does anyone know a way how to update chosen list without loosing selected data?

理论上,我可以手动删除所有选择的生成

  • 元素,然后用新元素填充,但是获取 SELECT "value" 数据时会出现问题.

    In theory I can manually remove all chosen generated

  • elements and then populate with new ones, but then is a problem with getting SELECT "value" data.

    推荐答案

    如果您保存选定的项目,这应该相当简单.例如:

    This should be fairly simply if you save the items selected. For example:

    <select data-placeholder="Choose a country..." style="width:350px;" multiple="true"  class="chosen-select">
    $(".chosen-select").chosen();
    

    现在,在更新所选项目之前,请确保您保存所选项目,如下所示:

    Now, before updating the chosen, make sure you save the items selected like this:

    var chosenSelectedItems = $(".chosen-select").val(); // this gets you the select value data
    // Update the select items
    $('.chosen-select').trigger('liszt:updated');
    $(".chosen-select").val(chosenSelectedItems);
    

    这应该可以在更改之前重置原始值.

    This should be able to reset the original values before the change.

  • 相关文章