1. Home
  2. Docs
  3. JQUERY
  4. 找物件
  5. 找p

找p

    </pre>
    <!DOCTYPE html>
    <html>
    <head>
    <script src=&amp;quot;httpsss://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js&amp;quot;></script>
    <script>
    $(document).ready(function(){
    $(&amp;quot;p&amp;quot;).click(function(){
    $(this).hide();
    });
    });
    </script>
    </head>
    <body>
    
    <p>If you click on me, I will disappear.</p>
    <p>Click me away!</p>
    <p>Click me too!</p>
    
    </body>
    </html>
    <pre>