Backbone.js - 在 devTools 中获取 childElementCount 值进行打印
Backbone.js - get childElementCount value in devTools to print
我试图在 chrome 开发工具中记录 childElementCount
属性,但我没有定义。
这是我的代码:
console.log('childElementCount---', this.ui.tbody.get('childElementCount')
returns childElementCount--- undefined
为什么未定义?
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
我试图在 chrome 开发工具中记录 childElementCount
属性,但我没有定义。
这是我的代码:
console.log('childElementCount---', this.ui.tbody.get('childElementCount')
returns childElementCount--- undefined
为什么未定义?
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