jquery引入方式有两种
1一种是通过本地文件,引入,如同css引入一般
<script type="text/javascript" src="../jquery/2.1.4/jquery.js"></script>
2通过在线引用方式,
<script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.js"></script>
类似css引入方式本次链接来源百度
http://cdn.code.baidu.com/完整模式
$(document).ready(function){
$(‘#list>li’).addClass('horiz') //给li标签加个样式
}
简写模式
$(function(){
$('list>li').add.Class('horiz') //给li标签加个样式
})
使用$(document).ready() 只要dom结构加载完之后 即可渲染页面了