$(document).ready(function(){

//打开    
 $("#open").click( function () {
    
         
            $(
"#showBox").show().css("top",($(document).height()-200)/2 ).css("left",($(document).width()-400)/2 );
          }    );
         
          
//关闭
           $("#close").click( function () {
            $(
"#showBox").hide();
          }    );

    });
posted on 2009-07-29 10:41  钱途无梁  阅读(2084)  评论(1编辑  收藏  举报