我已经构建了一个 Excel 加载项(使用 Office-js、TypeScript、HTML、JQuery、CSS、Visual Studio 2019)来操作 Excel 电子表格,并且我想使用进度微调器显示进度消息。我认为 UI Fabric 中的 ms-Spinner 符合要求。我可以将它与 HTML/JQuery/CSS 一起使用,还是需要像 react 这样的框架?
我在javascript中试过这个,但它抛出了一个异常:
var spin = document.querySelector('.ms-Spinner');
if (spin) spinnerComponent = new components.Spinner(spin);
// Unhide and start the spinner
$(".ms-Spinner").show();
if (spinnerComponent) spinnerComponent.start();