我试图在chrome开发工具中记录childElementCount
属性,但未定义。
这是我的代码:
console.log('childElementCount---', this.ui.tbody.get('childElementCount')
返回childElementCount--- undefined
为什么未定义?
答案 0 :(得分:1)
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