2010-02-09 101 views

回答

5

使用find()

$(this).find('td.stock'); 

,或者,通过this作为背景的$()方法:

$('td.stock', this); 

都做同样的事情。