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.
我正在寻找添加调整大小事件,但不是运气。
office.js 1.0 或 1.1 中是否支持/提供添加(excel 内容加载项)调整大小事件?
这可以通过使用来实现javascript/jquery window.resize()
javascript/jquery window.resize()
JavaScript:
window.onresize = function(event) { ... };
jQuery:
$( window ).resize(function() { ... });