我正在尝试遍历所有作为 div 子元素的 span 元素:
$('#recommendTextArea').children('span').each(function () {
console.log(this.html());
});
但是我总是得到这个错误:
Uncaught TypeError: Object #<HTMLSpanElement> has no method 'html'
我尝试将其更改为 text(),但它也不起作用