var NoticePop = { show: function () { $("#waitNoticeDiv").css({ "opacity": "0" }); $("#waitNoticeDiv").fadeIn(500); $("#popNoticeDiv").fadeIn(15); this.center(); }, center: function () { var windowWidth = document.documentElement.clientWidth; var windowHeight = document.documentElement.clientHeight; var popupHeight = $("#popNoticeDiv").height(); var popupWidth = $("#popNoticeDiv").width(); //居中设置 $("#popNoticeDiv").css({ "position": "absolute", "top": "150px", "left": windowWidth / 2 - popupWidth / 2 }); //以下代码仅在IE6下有效 }, hide: function () { $("#waitNoticeDiv").fadeOut("slow"); $("#popNoticeDiv").fadeOut("slow"); } }