gpt4 book ai didi

jquery - .each() 和 $(this)

转载 作者:行者123 更新时间:2023-12-01 00:01:08 25 4
gpt4 key购买 nike

这是我的代码:

$myDiv = $('<div>1</div>');

$myDiv.each(function () {
console.log(this.html());
});

它会产生错误,因为 this 应该是 $(this)。可是等等。 $myDiv 本来就不是一个 jQuery 对象,所以 this 也必须是一个 jQuery 对象。如果是这样,为什么我要把 this 包裹在 $( ) 中?

最佳答案

jQuery 对象或多或少是常规 DOM 元素的数组。 each 迭代这些。 this 只是一个 DOM 元素,而 $(this) 生成一个 DOM 元素的单元素数组,可以访问 jQuery API 函数。

关于jquery - .each() 和 $(this),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7273498/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com