Jquery  弹出新窗体

开始先用css将这个DIV设好位置,并且隐藏

  function winshow()
    {
        var winNode = $(".win");
        winNode.show("slow");  //将窗体慢慢的弹出来

        var add = $("#Button1");
        add.hide("slow");//将窗体慢慢的隐藏
    }

    function fanhui()
    {
        var winNode = $(".win");
        winNode.hide("slow");

        var add = $("#Button1");
        add.show("slow");
    }

 

相关文章:

  • 2022-12-23
  • 2022-01-09
  • 2022-12-23
  • 2021-08-05
  • 2022-12-23
  • 2021-06-13
  • 2022-12-23
  • 2021-11-20
猜你喜欢
  • 2022-12-23
  • 2021-12-15
  • 2022-12-23
  • 2021-04-20
  • 2022-12-23
  • 2021-06-13
相关资源
相似解决方案