我需要从display:inline-block覆盖插件http://plugins.learningjquery.com/expander/的css到内联。有没有办法做到这一点??
答案 0 :(得分:3)
尝试:
afterExpand: function() {
$(this).find($('span.details')).css('display','inline');
}
答案 1 :(得分:1)
尝试使用以下内容编写CSS:
span.details{
display:inline !important;
}
如果我错过了班级名称,请检查你的扩展元素,找到合适的班级并定位它。