jQuery选择器之层级选择器
jQuery选择器之基本筛选选择器
jQuery选择器之内容筛选选择器
jQuery选择器之可见性筛选选择器
jQuery选择器之属性筛选选择器
jQuery选择器之子元素筛选选择器
jQuery选择器之表单元素选择器
jQuery选择器之表单对象属性筛选选择器
jQuery选择器之特殊选择器this
实例一、
- var imooc = {
- name:"慕课网",
- getName:function(){
- //this,就是imooc对象
- return this.name;
- }
- }
- imooc.getName(); //慕课网
实例二、
- p.addEventListener('click',function(){
- //this === p
- //以下两者的修改都是等价的
- this.style.color = "red";
- p.style.color = "red";
- },false);
实际案例常用代码:
- $("p").css('color','#9932CC');
- $("a:lt(4)").css('color','red');
- $("a[name=setColor]").css('color','blue');
- $("dd a:nth-child(10)").css('color','#66CD00');
- $("a:last-child").css('color','#C71585');
以上内容皆来自于小慕
您可以选择一种方式赞助本站
支付宝扫一扫赞助
微信钱包扫描赞助
赏