摘要: 一、基本选择器 1、id选择器 选择id值等于指定id元素,id值在文档中只能有一个,不能重复,所以得到的是唯一的元素。 $("#one") 2、class选择器 选择类名为指定class的所有元素。 $(".one") 3、element选择器 根据标签名获得元素集合。 $("p") 4、通配符选 阅读全文
posted @ 2017-01-18 09:58 asimpleday 阅读(286) 评论(0) 推荐(0) 编辑