1. addClass() 追加样式类名 $('p').addClass('mystyle') // 多次使用类名叠加
2. attr() $('p').attr('class', 'mystyle') // 多次使用后面覆盖前面的
3. removeClass() 删除所有或指定类名
4. toggleClass() 重复切换类名(存在就删除,不存在就添加)
5. hasClass() 判断是否含有某个类名
6. css() 获取或设置样式 包括外部导入
7. width() (content区域)
8. height()
9. innerWidth() (包含padding)
10. innerHeight()
11. outerWidth() (包含border,传入true包含margin)
12. outerHeight()
元素定位有关的方法13. offset() 元素相对于视窗的偏移,包含top、left属性
14. position() 元素相对于最近的定位元素的偏移,包含top、left属性
15. scrollTop() 获取或设置滚动条距顶端的距离
16. scrollLeft() 获取或设置滚动条距左端的距离