我正在查看以下来自http://jqfundamentals.com/chapter/jquery-basics的显式迭代示例:
$( 'li' ).each(function( index, elem ) {
// this: the current, raw DOM element
// index: the current element's index in the selection
// elem: the current, raw DOM element (same as this)
$( elem ).prepend( '<b>' + index + ': </b>' );
});
注释被称为原始 DOM 元素,elem
但随后代码调用.prepend()
.elem
我刚刚开始使用 jQuery,但据我了解,您只能在 jQuery 对象上调用 jQuery 方法,而不能在原始 DOM 元素上调用。我是不是误会了?