我有以下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);

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