Hide/Show Div on button click using Jquery

后端 未结 3 1798
余生分开走
余生分开走 2021-01-13 06:03

This is supposed to be my first Jquery code that I am writing. I have used this and many more examples to make the simplest jquery code to display Hello on Button Click(W3Sc

3条回答
  •  半阙折子戏
    2021-01-13 06:42

    $(document).ready(function () {
       $("#btn").click(function () {
         $("#btn").click(function () { $("#Create").show();
       });
    });
    

提交回复
热议问题