我有以下代码
var allRows = $('.myclass'); ... allRows.each(function() { //现在搜索所有行 var className = this.attr("class"); ... });
我收到一条错误消息
Uncaught TypeError: Object #<HTMLDivElement> has no method 'attr'
我的代码有什么问题?我在 allRows 上做了一个 console.log,它是一个 jquery 对象。