0

单击按钮时如何关闭 Office UI Fabric JS 中的面板?

在 Bootrap 中,我可以通过 CSS 添加选项

data-dismiss="modal" to the button class

同样在引导程序中,我可以在 jquery 中选择隐藏模式

$('#myModal').modal('hide');

Office UI Fabric 隐藏已打开面板的 jquery 等效项是什么?

4

1 回答 1

2

您可以通过 jQuery 触发现有的面板关闭按钮

$(".ms-Panel-closeButton").trigger("click");
于 2017-01-24T09:27:05.153 回答