javascript如何实现excel的冻结窗格?

javascript如何实现excel的冻结窗格?

Javascript 本身没有操作 Excel 的功能,但可以调用 Excel Application 对象组件的功能实现对 Excel 文件的操作。冻结窗口可以通过如下设置实现:Excel.Application.ActiveWindo
JavaScript670