选择multiselect中的复选框

时间:2017-03-16 11:26:36

标签: javascript jquery symfony

我有下拉菜单。我使用javascript选中了一个复选框,但是当我发送表单时,选中的选项未考虑

enter image description here

在这张图片中,尽管检查了第一个选项但选中的选项数未更新,但当我检查另一个选项时,数字更新如下

enter image description here

这是我的代码:

enter image description here

并在我的javascript中:

  $("#contact").multiselect({
        show: ["bounce", 200],
        hide: ["explode", 1000],
        checkAllText: "Cocher tout",
        uncheckAllText: "Décocher tout",
        minWidth: 420,
        noneSelectedText: "Centre d'intérêt",
        selectedText: '# bus sélectionnés'
    });
var opti=$("#ui-multiselect-contact_option-0");
    opti.attr("checked", "checked");
    opti.attr("aria-selected", "true");
    opti.attr('disabled', "true");

请帮忙。

0 个答案:

没有答案