如何在jquery selectmenu插件中隐藏选项

时间:2012-04-20 13:07:44

标签: jquery jquery-ui jquery-plugins

当我尝试同时使用selectmenu jquery插件从select($('option').hide())中删除或隐藏选项时,它仍会显示我想删除的选项。在销毁selectmenu之后,我将看到通常的html下拉选择,并且它已删除选项。我做错了什么?

1 个答案:

答案 0 :(得分:2)

假设您要更改或删除选项。

您可以尝试使用演示页面 http://jquery-ui.googlecode.com/svn/branches/labs/selectmenu/index.html 通过Firebug控制台或任何类似的:

$("select#speedC").find("option:first").remove();
//and then you can refresh with 
$("select#speedC") 
.selectmenu("destroy") //destroy the custom select menu 
.selectmenu({style:'dropdown'}); //replace with the new custom select menu 

这不是最好的选择,但刷新似乎不起作用。

让我知道。 多纳托。