假设有三个类
<div class="hello world_1"></div>
<div class="hello world_2"></div>
<div class="hello world_3"></div>
我想根据“hello”获取类名“world_1”、“world_2”和“world_3”。编码:
$('.hello').each(function(){
this.attr('class');
});
得到错误说:
TypeError: Object #<HTMLDivElement> has no method 'attr'
我试验了一下,发现
$('.hello:first').attr('class')
工作时
$('.hello')[0].attr('class')
引发上述错误。
谁能解释它为什么会发生,我怎样才能得到我想要的?
谢谢