码迷,mamicode.com
首页 > Web开发 > 详细

jQuery中this和$(this)的区别

时间:2014-12-18 14:50:40      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:style   ar   io   sp   java   on   bs   cti   ad   

$(this)是jQuery对象,能调用jQuery方法,如.key()  .slideUp()等;

this是HTML元素对象,能调用元素属性,如this.value   this.css 等;



$(‘a‘).click(function(){ // 这里的 this 指向当前点击的DOM节点,也就是a。可以调用DOM方法,比如this.getAttribute, this.tagName ... // 这里的 $(this) 表示包装过的一个 jQuery 对象,拥有 jQuery 的一些方法,比如 $(this).addClass(), $(this).hide() ... });

jQuery中this和$(this)的区别

标签:style   ar   io   sp   java   on   bs   cti   ad   

原文地址:http://www.cnblogs.com/weiyuncai/p/4171502.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!