0

選択入力に選択した jquery プラグインを使用しています。タグをクリックして選択オプションをリセットしたいので、jqueryプラグイン機能にアクセスしたいです。デモ

HTML

<select id="second" class="chzn-select" style="width:100px">
<option value="0"> select</option>
<option value="1"> mr</option>
<option value="2"> mrs</option>
</select>
<a href="#">reset</a>​

jquery

$(".chzn-select").chosen()
$('a').click(function(){
    $.chosen({results_reset})
})

プラグインからの機能

Chosen.prototype.results_reset = function () {
    this.form_field.options[0].selected = true;
    this.selected_item.find("span").text(this.default_text);

    if (!this.is_multiple) this.selected_item.addClass("chzn-default");

    this.show_search_field_default();
    this.results_reset_cleanup();
    this.form_field_jq.trigger("change");

    if (this.active_field) return this.results_hide();
};

完全なプラグインのリンクは 次のとおりですhttp://harvesthq.github.com/chosen/chosen/chosen.jquery.js

4

3 に答える 3

1

編集

プラグイン関数を呼び出すには、次のようにします。

$('your-select').data('chosen').results_reset();

デモ: http://jsfiddle.net/vCE4Y/12/


選択をリセットするためにプラグイン コードにアクセスする必要はありません。次のようにリセットできます。

$('your-select').val(0).trigger("liszt:updated");

デモ: http://jsfiddle.net/vCE4Y/11/

于 2012-11-01T10:21:43.547 に答える
0

You can try this also for resetting

$('a').click(function(){

     $('#second').trigger("liszt:updated");

})
于 2012-11-01T10:48:42.573 に答える