我正在使用jQuery 手风琴,但默认情况下,第一个手风琴选项卡已在页面加载时展开。我尝试将其添加到内联 html 中,并尝试从jquery-ui.jsaria-selected="false"
的第6345 行更改/删除它,但第一个选项卡仍然展开:
// make sure at least one header is in the tab order
if ( !this.active.length ) {
this.headers.eq( 0 ).attr( "tabIndex", 0 );
} else {
this.active.attr({
"aria-selected": "true",
tabIndex: 0
})
.next()
.attr({
"aria-expanded": "true",
"aria-hidden": "false"
});
}
任何指针?
编辑:使用以下答案的新小提琴:http: //jsfiddle.net/pfeff/WNdRe/1/