Files
2018-10-16 21:32:40 +05:30

424 B

title, localeTitle
title localeTitle
Target Elements by id Using jQuery id的目标元素使用jQuery

id的目标元素使用jQuery

<script> 
  $(document).ready(function() { 
    $("button").addClass("animated bounce"); 
    $(".well").addClass("animated shake"); 
    $("#target3").addClass("fadeOut"); // Target elements with the id "target3" and add the class "fadeOut" to them. 
  }); 
 </script>