我正在尝试将手风琴和自动完成插件混合到一个解决方案中。
它工作正常,需要一些细节。单击自动完成元素后,我无法找到如何关闭手风琴。
JS摆弄代码:http://jsfiddle.net/yBKjd/1/
图解说明:
我正在使用的代码如下:
$("#tags").autocomplete({
source: availableTags,
minLength: 0,
select: function(event, ui)
{
alert('I would like to close the accordion in this moment')
},
open: function()
{
$(this).autocomplete("widget")
.appendTo("#demo-description")
.css("position", "static");
}
}).on("focus", function ()
{
$(this).autocomplete("search", '');
});
答案 0 :(得分:1)
用普通的jquery隐藏手风琴:
$( '#演示描述')隐藏();