1. 程式人生 > >jquery學習歷程!第一節!

jquery學習歷程!第一節!

<!DOCTYPE html> <html> <head> <script src="/jquery/jquery-1.11.1.min.js"> </script> <script> $(document).ready(function(){   $("p").click(function(){      $(this).html("內容");         // window.location.reload()   }); }); </script> </head> <body> <p>如果您點選我,我會消失。</p> <p>點選我,我會消失。</p> <p>也要點選我哦。</p> </body> </html>

--  頁面載入完成後,自動增加點選事件!

點選事件修改顯示漢字。