我有一堆I am using the Jquery Chosen plugin形式的select元素。如何重置表单?以下内容不起作用:
<input type="reset" />发布于 2013-08-23 00:08:43
你可以试试这个:
$('select').chosen('destroy');
$('select').prop("selectedIndex", -1);
$('select').chosen();https://stackoverflow.com/questions/7897760
复制相似问题