我想问一下jQuery语法。我在bootstrap.js上找到了这样的语法:
$('.class')['height'](0)
我能理解这一点,这与以下内容相同:
document.getElementsByClassName('class')[0].style.height=0
但是,我再次找到了相同的语法:
$('.class')['height']($('.class')[0]['scrollHeight'])
和
$('.class')['height']($('.class')['height']())(0).offsetHeight
这是什么?我无法理解这一点。