Why doesn#39;t $.each() iterate through every item?(为什么 $.each() 不遍历每个项目?)
问题描述
我有以下标记,其中包含 10 个 pre
元素和类 indent
:
I have the following markup containing 10 pre
elements with the class indent
:
<pre class="indent"></pre>
<pre class="indent"></pre>
<pre class="indent"></pre>
<pre class="indent"></pre>
<pre class="indent"></pre>
<pre class="indent"></pre>
<pre class="indent"></pre>
<pre class="indent"></pre>
<pre class="indent"></pre>
<pre class="indent"></pre>
我正在使用以下 jQuery .each()
函数来遍历每个元素:
I'm using the following jQuery .each()
function to iterate through each element:
$(function(){
$.each(".indent", function(index){
alert(index);
});
});
我希望看到 10 个警报,但我只看到 7 个
I would expect to see 10 alerts, however I only see 7
-- 见 Fiddle --
但是,这可以与 $(".indent").each()
一起按预期工作:
However, this works as expected with $(".indent").each()
:
$(function(){
$(".indent").each(function(index){
alert(index);
});
});
-- 见 Fiddle --
查看 $.each()
文档,我知道有区别:
Looking at the $.each()
documentation, I understand theres a difference:
$.each() 函数与 $(selector).each() 不同,它是用于专门迭代 jQuery 对象.
The $.each() function is not the same as $(selector).each(), which is used to iterate, exclusively, over a jQuery object.
但我不明白为什么在这种情况下,它不会遍历所有元素.
But I don't understand why in this instance, it doesn't iterate through all elements.
为什么会这样?
推荐答案
$.each(".indent", function(index){
不会遍历 $('.indent')
的元素,而是遍历长度为 7 个字符的 ".indent"
字符串.
doesn't iterate over the elements of $('.indent')
but over the ".indent"
string whose length is 7 chars.
参见参考
基于jQuery源码的更详细解释:
A more detailed explanation based on jQuery source code :
jQuery 首先检查第一个参数 obj
(这里是你的字符串)是否有 length
:
jQuery first checks if the first parameter, obj
(here your string), has a length
:
var ...
length = obj.length,
isObj = length === undefined || jQuery.isFunction( obj );
您的字符串具有 length
(并且不是函数),isObj
是 false
.
Your string having a length
(and not being a function), isObj
is false
.
在这种情况下,执行以下代码:
In this case, the following code is executed :
for ( ; i < length; ) {
if ( callback.call( obj[ i ], i, obj[ i++ ] ) === false ) {
break;
}
}
所以,给定函数f
,下面的代码
So, given the function f
, the following code
$.each(".indent", f);
等价于
for (var i=0; i<".indent".length; i++) {
var letter = ".indent"[i];
f.call(letter, i, letter);
}
(您可以使用 var f = function(i,v){console.log(v)};
记录字母,或者被提醒 call
使用 var f = function(){console.log(this)};
)
(you can log the letters using var f = function(i,v){console.log(v)};
or be reminded one of the subtleties of call
using var f = function(){console.log(this)};
)
这篇关于为什么 $.each() 不遍历每个项目?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么 $.each() 不遍历每个项目?
基础教程推荐
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 在for循环中使用setTimeout 2022-01-01
- 动态更新多个选择框 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01