Learn how Script Tags and Document Ready Work
<script>
$(document).ready(function(){
});
</script>
Target HTML Elements with Selectors Using jQuery —- jQuery 元素选择器
$("button").addClass("animated bounce");
Target Elements by Class Using jQuery —- jQuery 类选择器
$(".well").addClass("animated shake");