|
jQueryɾ³ýÊý¾ÝʱµÄÌáʾЧ¹û£º

ɾ³ý¼Ç¼ʱµÄÌáʾЧ¹û <script src="Scripts/jquery-1.4.1-vsdoc.js" type="text/java script"> <script src="Scripts/jquery-1.4.1.js" type="text/java script"> <script type="text/java script"> $(function () { $("#Button1").click(function () { //×¢²áɾ³ý°´Å¥µã»÷ʼþ $(".mask").show(); //ÏÔʾ±³¾°É« showDialog(); //ÉèÖÃÌáʾ¶Ô»°¿òµÄTopÓëLeft $(".dialog").show(); //ÏÔʾÌáʾ¶Ô»°¿ò }); /*¸ù¾Ýµ±Ç°Ò³ÃæÓë¹ö¶¯ÌõλÖã¬ÉèÖÃÌáʾ¶Ô»°¿òµÄTopÓëLeft*/ function showDialog() { var objW = $(window); //µ±Ç°´°¿Ú var objC = $(".dialog"); //¶Ô»°¿ò var brsW = objW.width(); var brsH = objW.height(); var sclL = objW.scrollLeft(); var sclT = objW.scrollTop(); var cruW = objC.width(); var cruH = objC.height(); var left = sclL + (brsW - cruW) / 2; //¼ÆËã¶Ô»°¿ò¾ÓÖÐʱµÄ×ó±ß¾à var top = sclT + (brsH - cruH) / 2; //¼ÆËã¶Ô»°¿ò¾ÓÖÐʱÉϱ߾à objC.css({ "left": left, "top": top }); //ÉèÖöԻ°¿òÔÚÒ³ÃæÖеÄλÖà } $(window).resize(function () { //Ò³Ãæ´°¿Ú´óС¸Ä±äʼþ if (!$(".dialog").is(":visible")) { return; } showDialog(); //ÉèÖÃÌáʾ¶Ô»°¿òµÄTopÓëLeft }); $(".title img").click(function () { //×¢²á¹Ø±ÕͼƬµã»÷ʼþ $(".dialog").hide(); $(".mask").hide(); }); $("#Button3").click(function () { //×¢²áÈ¡Ïû°´Å¥µã»÷ʼþ $(".dialog").hide(); $(".mask").hide(); }); $("#Button2").click(function () { //×¢²áÈ·¶¨°´Å¥µã»÷ʼþ $(".dialog").hide(); $(".mask").hide(); if ($("input:checked").length != 0) { //Èç¹ûÑ¡ÔñÁËɾ³ýÐÐ $(".divShow").remove(); //ɾ³ýijÐÐÊý¾Ý } }); });
|