【JavaScript學習筆記】點選消失

Dsp Tian發表於2017-09-02
<!DOCTYPE html>
<html>
    <head>
        <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
        <script type="text/javascript" >
        $(document).ready(function(){
          $("p").click(function(){
            $(this).hide();
          });
        });
        </script>
    </head>
    <body>
        <p>點選消失</p>
    </body>
</html>

 

相關文章