Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用footable(http://fooplugins.com/footable-demos/),我想在屏幕调整为移动屏幕大小时自动扩展所有行。任何想法如何实现这一目标?
$('table').trigger('footable_expand_all'); $('table').bind('footable_breakpoint', function(){ $('table').trigger('footable_expand_all'); });
成功了。