1. 程式人生 > >【JavaScript學習筆記】點擊消失

【JavaScript學習筆記】點擊消失

hid his script click fun bsp logs document query

<!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>

【JavaScript學習筆記】點擊消失