$(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();
          }    );

    });

相关文章:

  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-09
  • 2022-01-01
  • 2021-08-22
相关资源
相似解决方案