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

jQuery Chosen - update select list without losing selections(jQuery Chosen - 更新选择列表而不丢失选择)
本文介绍了jQuery Chosen - 更新选择列表而不丢失选择的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在尝试使用 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.

    这篇关于jQuery Chosen - 更新选择列表而不丢失选择的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

    本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!
  • 相关文档推荐

    在开发JS过程中,会经常遇到两个小数相运算的情况,但是运算结果却与预期不同,调试一下发现计算结果竟然有那么长一串尾巴。如下图所示: 产生原因: JavaScript对小数运算会先转成二进制,运算完毕再转回十进制,过程中会有丢失,不过不是所有的小数间运算会
    append() 方法在被选元素的结尾(仍然在内部)插入指定内容。 语法: $(selector).append( content ) var creatPrintList = function(data){ var innerHtml = ""; for(var i =0;i data.length;i++){ innerHtml +="li class='contentLi'"; innerHtml +="a href
    问题描述: 在javascript中引用js代码,然后导致反斜杠丢失,发现字符串中的所有\信息丢失。比如在js中引用input type=text onkeyup=value=value.replace(/[^\d]/g,) ,结果导致正则表达式中的\丢失。 问题原因: 该字符串含有\,javascript对字符串进行了转
    Rails/Javascript: How to inject rails variables into (very) simple javascript(Rails/Javascript:如何将 rails 变量注入(非常)简单的 javascript)
    CoffeeScript always returns in anonymous function(CoffeeScript 总是以匿名函数返回)
    Ordinals in words javascript(javascript中的序数)