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.
我有一个包含多个列的表,并且所有列都有标题。当通过 ajax 将数据加载到表中时,有时列宽会发生变化。如何检测任何列的宽度变化?可以用jquery完成吗?
不幸的是,没有可靠的方法来检测元素尺寸的变化。作为替代方案,也许您可以在 ajax 中添加一些代码来记录开始(可能使用beforeSend)和结束宽度(从内部success)。当它不同时,使用.trigger(). 从应用程序中的任何位置订阅该事件以响应宽度的变化。
beforeSend
success
.trigger()