课程
/前端开发
/jQuery
/jQuery基础 (一)—样式篇
var ele=$(this),与ele.find('span').append(reset);的作用
2016-09-23
源自:jQuery基础 (一)—样式篇 3-9
正在回答
ele=$(this):获取当前被选中元素对象
ele.find('span').append(reset):从当前元素标签内找出<span>标签,添加文本内容reset
举报
jQuery初入开启样式修炼,体验万能的jQuery样式集搭建网站布局
1 回答var reset = $.data(ele, "a"). + "</br>" + $.data(ele, "b").name
1 回答ele instanceof jQuery
2 回答var $this= $(this) 前面那个$this 代表什么? 后面$(this)代表是$('p')的内容吗?
2 回答var $this= $(this) $this.css('color','red')形式为什么没用
1 回答ele instanceof jQuery这是什么意思?