我试图在chrome开发工具中记录childElementCount
属性,但我得到了未定义的。
这是我代码:
console.log('childElementCount---', this.ui.tbody.get('childElementCount')
返回childElementCount--- undefined
为什么没有定义?
我试图在chrome开发工具中记录childElementCount
属性,但我得到了未定义的。
这是我代码:
console.log('childElementCount---', this.ui.tbody.get('childElementCount')
返回childElementCount--- undefined
为什么没有定义?
1条答案
按热度按时间x8diyxa71#
jQuery
get()
用于从jQuery对象中检索底层DOM元素。它接受整数索引而不是字符串。请尝试this.ui.tbody.get(0).childElementCount
或this.ui.tbody.get(0).getAttribute('childElementCount')
或使用jQuery:
this.ui.tbody.prop('childElementCount')
或this.ui.tbody.children().length