如何在mootools中获得元素高度1.1

时间:2013-04-13 08:51:22

标签: javascript mootools

我正在努力获得li的高度,是 mootools 的新手并使用版本1.1 ......

我的代码尝试过: -

window.addEvent('domready', function(){ 
   alert($('#slider_more li').getSize().y);
});

myMore.start(425*2); //and implement in the place of 425

还想知道它们是否是mootools的功能,因为高度设置为auto ??

1 个答案:

答案 0 :(得分:1)

试试$$('#slider_more li')[0].getSize().size.y

http://jsfiddle.net/SW3tP/1/