我不喜欢默认的 Accordion 图标,我想更改它们。这个链接在这里:
http://jqueryui.com/demos/accordion/#option-header
显示更改标题的选项,但需要指定图标。我不需要图标。我只需要一个简单(+)
的(-)
我怎么能用手风琴做到这一点?
我不喜欢默认的 Accordion 图标,我想更改它们。这个链接在这里:
http://jqueryui.com/demos/accordion/#option-header
显示更改标题的选项,但需要指定图标。我不需要图标。我只需要一个简单(+)
的(-)
我怎么能用手风琴做到这一点?
Hiya工作示例演示 http://jsfiddle.net/zM5Vj/ 或 http://jsfiddle.net/zM5Vj/show/
希望这会有所帮助,当手风琴折叠时会显示+,而在打开手风琴的情况下。
有一个不错的!
相应地添加 + 和 - 的Jquery 代码其余完整代码在小提琴中,如果您愿意,我可以复制粘贴整个代码。请告诉我进展如何!
$(function(){
$('#accordion .fullChild>a.opener').text('+').addClass('box');
$('#accordion .opener').click(function() {
if($(this).text() == "-") {
$(this).text("+");
}
else {
$('#accordion .opener').text("+");
$(this).text("-");
}
});
});