用于从数组中选择第N 个项目的方括号[]索引符号的 jQuery 等效项是什么?
假设您有 10 个段落,并且想要获取第 7 个段落的内容。使用方括号表示法有效,但如果您想继续使用 jQuery,则不行:
$("p")[6]; //returns DOM object: [object HTMLParagraphElement]
$("p")[6].html(); //returns error: (Chrome:) Uncaught TypeError: Object #<HTMLParagraphElement> has no method 'html' (Firefox:) TypeError: $("p")[6].html is not a function (IE8+:) TypeError: Object doesn't support this property or method (IE7:) [object Error]