首页 > 代码库 > sharepoint 弹出窗口

sharepoint 弹出窗口

 

?
1
2
3
4
5
6
7
8
9
function openAnswerQandADialog(aUrl,aTitle) {
    var options = {
       url: aUrl,
       width: 1024,
       height: 768,
       title: aTitle
    };
    SP.UI.ModalDialog.showModalDialog(options);
}