摘要:
var statusId = ''; var notifyId = ''; function AddNotification() { notifyId = SP.UI.Notify.addNotification("Hello World!", true); } function RemoveNotification() { SP.UI.Notify.removeNotification(notifyId); notifyId = ''; } function AddStatus() { statusId = SP.UI.St 阅读全文