Backbone.js-在devTools中获取childElementCount值以进行打印

时间:2018-11-27 18:27:51

标签: backbone.js marionette children document-body

我试图在chrome开发工具中记录childElementCount属性,但未定义。

这是我的代码:

console.log('childElementCount---', this.ui.tbody.get('childElementCount')

返回childElementCount--- undefined

为什么未定义?

img1

1 个答案:

答案 0 :(得分:1)

jQuery get()用于从jQuery对象中检索基础DOM元素。它接受整数索引而不是字符串。 尝试this.ui.tbody.get(0).childElementCountthis.ui.tbody.get(0).getAttribute('childElementCount')

或使用jQuery:

this.ui.tbody.prop('childElementCount')  或this.ui.tbody.children().length