摘要:
.attr()与.removeAttr() 每个元素都有一个或者多个特性,这些特性的用途就是给出相应元素或者其内容的附加信息。如:在img元素中,src就是元素的特性,用来标记图片的地址。 操作特性的DOM方法主要有3个,getAttribute方法、setAttribute方法和removeAtt 阅读全文
摘要:
注意: 在某些浏览器中,选择器:checked可能会错误选取到<option>元素,所以保险起见换用选择器input:checked,确保只会选取<input>元素 阅读全文
摘要:
子元素筛选选择器 input、text、password、radio、checkbox submit、image、reset、button、file ... 阅读全文
摘要:
注意: jQuery实现:nth-child(n)是严格来自CSS规范,所以n值是“索引”,也就是说,从1开始计数,:nth-child(index)从1开始的,而eq(index)是从0开始的 阅读全文
摘要:
在这么多属性选择器中[attr="value"]和[attr*="value"]是最实用的 阅读全文
摘要:
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> <title></title> <link rel="stylesheet" href="imooc 阅读全文
摘要:
注意: 阅读全文
摘要:
基本筛选器 :first/:last/:even/:odd div:first :even :odd :even :odd ... 阅读全文