JQuery对话框无法在移动

时间:2017-10-31 08:00:37

标签: javascript jquery jquery-ui

我有以下jquery代码,它在网上工作但不在移动设备上



function jsPopup(divID , msg, title, height ,width  ){
NWF$('#'+ divID +'').html("");
NWF$('#'+ divID +'').html(msg);
NWF$('#'+ divID +'').dialog({
                        title : "" + title + "" ,
                        autoOpen: false,
                        modal: true,
                        open: function(event, ui) {
                         },
                        minHeight: 104,
                        height: height ,
                        width: width  
});
                       
                       
NWF$('#'+ divID +'').dialog("open");                    

}




我使用以下代码调用该函数



jsPopup("divPopupBox" ,varMsg  , "Customer Information", 600 , 1000);




任何想法或解决方案请帮助

感谢。

0 个答案:

没有答案
相关问题