jQuery的两种引入方式
1-1:在jquery.com上下载生产版本到本地,在html文档中用<script src="../js/jquery.js">引用
1-2: 使用CDN引用:百度库(cdn.code.baidu.com):http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js
2.$(document).ready()
2-1: $(document).ready(function(){
$('#list > li').addClass('horiz')
})
2-2:简写:$(function(){
$('$list > li').addClass('horiz')
})