Backbone.js -在devTools中获取要打印的childElementCount值

zu0ti5jz  于 2022-11-10  发布在  其他
关注(0)|答案(1)|浏览(113)

我试图在chrome开发工具中记录childElementCount属性,但我得到了未定义的。
这是我代码:

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

返回childElementCount--- undefined
为什么没有定义?

x8diyxa7

x8diyxa71#

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

相关问题