2

select2 select 要素のカップルをリセットする必要があります。現在、私は次のようにやっています

            $("#ItemId").select2("val", "");
            $("#PermanentDistrictId").select2("val", "");
            $("#PermanentThanaId").select2("val", "");
            $("#PresentDistrictId").select2("val", "");
            $("#PresentThanaId").select2("val", "");
            $("#OccupationId").select2("val", "");
            $("#GenderId").select2("val", "");

しかし、私は次のように単一の関数でそれをしたいと思います-

ParticularForm.AllSelectElements.select2("val", "");

私のjavascriptスキルが非常に低いため、ここで質問しています。だから、私はあなたの助けが必要です。

ありがとうございました。

4

3 に答える 3

3

あなたParticularForm.AllSelectElementsは次のように行うことができます:

$('#yourform select').select2("val", "");

これにより、 内のすべての<select>要素が選択され#yourformます。

于 2013-11-07T19:18:48.270 に答える
3

$(".select2-hidden-accessible").val(null).trigger("変更");

于 2017-03-13T13:31:00.203 に答える