现在的位置: 首页 > 综合 > 正文

Jquery Div居中

2013年05月10日 ⁄ 综合 ⁄ 共 337字 ⁄ 字号 评论关闭
$(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();
          }    );

    });

抱歉!评论已关闭.