freeCodeCamp/guide/chinese/certifications/front-end-libraries/jquery/use-jquery-to-modify-the-en.../index.md

390 B
Raw Blame History

title localeTitle
Use jQuery to Modify the Entire Page 使用jQuery修改整个页面

使用jQuery修改整个页面

问题解释

animated类和hinge添加到您的body元素中。

相关链接:

解:

<script> 
  $("body").addClass("animated hinge"); 
  }); 
 </script>