我正在尋找一種可能性,以儘量減少其他手風琴選項卡,如果我收到一個手風琴內容的onclick,如果它的最小化,我只想保持在屏幕下方,如果用戶點擊此手風琴再次顯示。 找到這個(jQuery accordion hiding tabs in CSS),但沒有我想要的。Jquery:最小化手風琴選項卡onclick選項卡內容
任何人都有一些簡單的方法如何做到這一點的經驗?
我更願意把它包起來手風琴創作,像希爾:
$accordion.accordion({
autoHeight: false,
heightStyle: "fill",
activate: function (event, ui) {
json = [];
it = {};
it["id"] = ui.newHeader.attr('id');
it["filter"] = 0;
it["search"] = $("#txt_search").val();
json.push(it);
var header = ui.newHeader.attr('id').split('_');
var body = ui.newHeader.attr('id').substr(2);
body = body.substr(0, body.lastIndexOf('_'));
//iTransactionHandler(14, body, header[header.length - 1], json);
},
beforeActivate: function (event, ui) {
alert($(this).find('.ui-state-active').next().attr('id'));
}
});
您可以向我們展示的任何代碼示例? – empiric 2015-03-02 16:11:55
我有Jquery手風琴的標準代碼。 – user3763117 2015-03-02 16:18:24