随笔分类 -  jquery

摘要:前言 最近练习做弹窗,遇到height(),innerHeight(),outerHeight()的区别。 根据下面的盒模型来了解三者的区别。 height():element的height; innerHeight(): height + padding; outerHeight(): heigh 阅读全文
posted @ 2016-07-27 18:18 印前 阅读(291) 评论(0) 推荐(0)
摘要:一、基本选择器 1.ID选择器 $("#id") 2.类选择器 $(".class") 3.元素选择器 $("element") 4.通配选择器 $("*") 5.集合选择器 $("#id,p,span")二、层次选择器 1.$("ancestor descendant") 选取ancestor元素 阅读全文
posted @ 2015-09-17 20:59 印前 阅读(141) 评论(0) 推荐(0)