美文网首页
$(this) 和 this 关键字在 jQuery 中有何不同

$(this) 和 this 关键字在 jQuery 中有何不同

作者: 80a7ba2dd31d | 来源:发表于2019-06-24 07:53 被阅读0次

    $(this) 和 this 关键字在 jQuery 中有何不同?

    $(this) 返回一个 jQuery 对象,你可以对它调用多个 jQuery 方法,比如用 text() 获取文本,用val() 获取值等等。

    而 this 代表当前元素,它是 JavaScript 关键词中的一个,表示上下文中的当前 DOM 元素。你不能对它调用 jQuery 方法,直到它被 $() 函数包裹,例如 $(this)。

    相关文章

      网友评论

          本文标题:$(this) 和 this 关键字在 jQuery 中有何不同

          本文链接:https://www.haomeiwen.com/subject/floyqctx.html