本文实例讲述了jQuery封装的屏幕居中提示信息代码。分享给大家供大家参考,具体如下:
"; try { document.body.appendChild(eTip); } catch (e) { } $("#tipDiv").css({ position: "absolute",border: "solid 0px #D1D1D1",left: ($(window).width() - $("#tipDiv").outerWidth()) / 2,top: ($(window).height() - $("#tipDiv").outerHeight()) / 2 + $(document).scrollTop() }); $('#tipDiv').show(); if (autohide == true) { $('#tipDiv').fadeOut(3000); } } function closeLoad() { $('#tipDiv').fadeOut(); }