【 在 heatwood (想不出) 的大作中提到: 】
: 继续请教,使用each的时候,按照手册上说的,this表示当前的对象,但是我这样写为
: 什么会出错?
: $("#info .obmo .pl").each(function(i){
: if ($(this).text() == 'ISBN:'){
: isbn = $(this)[i].nextSibling;
已经 each 过了,就不用 [i] 了
$(this)[0] 才对
: }
: });
: firebug报 $(this)[i].nextSibling is undefine
--
FROM 221.221.164.115