我正在做learn.jquery.com,我遇到了一段代码......
$( "#content" )
.find( "h3" )
.eq( 2 )
.html( "new text for the third h3!" )
.end() // Restores the selection to all h3s in #content
.eq( 0 )
.html( "new text for the first h3!" );
代码中的评论让我质疑是否会将选择恢复为#content
或all h3s in #content
答案 0 :(得分:1)
代码:
$( "#content" )
.find( "h3" )
.eq( 2 )
.html( "new text for the third h3!" )
.end() // Restores the selection to all h3s in #content
.eq( 0 )
.html( "new text for the first h3!" );
此处“将选择恢复为#content中的所有h3”意味着它将返回到h3
jQuery对象中的content
,以eq(0)
为h3
和eq(2)
而不是{{1}}。
<强> See API Doc for .end() 强>