jquery easy ui 的 $.message.progress效果出不来,$.message.progress用不了

jqueryeasyui

发现一直用不了$.message.progress

发现是引用了extends_easyui_windows.js

里面有以下这个方法导致的

$.fn.window.defaults.onBeforeOpen=function(){

varoptions=$(this).window('options');

varwidth=options.width;

varheight=options.height;

vartop=(($.browser.msie?$(document).height():$(window).height())-height)*0.5;

if(top<0){

top=0;

}

varleft=(($.browser.msie?$(document).width():$(window).width())-width)*0.5;

if(left<0){

left=0;

}

options.top=top;

options.left=left;

$(this).window('move',options);

}

直接把这个方法去掉即可

相关推荐