$(this) 和 this 关键字在 jQuery 中有何不同?
check
check 2016-12-20 15:31:52
0
3
1538
check
check

reply all(3)
数据分析师

What is the difference between

$(this) and this keyword in jQuery? -PHP Chinese website Q&A-What is the difference between $(this) and this keyword in jQuery? -PHP Chinese website Q&A

Please watch and learn.

我是灰太狼

this表示的是javascript提供的当前对象

$(this)表示的是用jquery封装后的当前对象



迷茫

这对于很多 jQuery 初学者来说是一个棘手的问题,其实是个简单的问题。$(this) 返回一个 jQuery 对象,你可以对它调用多个 jQuery 方法,比如用 text() 获取文本,用val() 获取值等等。而 this 代表当前元素,它是 JavaScript 关键词中的一个,表示上下文中的当前 DOM 元素。你不能对它调用 jQuery 方法,直到它被 $() 函数包裹,例如 $(this)。

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template