标签: javascript mootools
我正在努力获得li的高度,是 mootools 的新手并使用版本1.1 ......
li
我的代码尝试过: -
window.addEvent('domready', function(){ alert($('#slider_more li').getSize().y); }); myMore.start(425*2); //and implement in the place of 425
还想知道它们是否是mootools的功能,因为高度设置为auto ??
答案 0 :(得分:1)
试试$$('#slider_more li')[0].getSize().size.y。
$$('#slider_more li')[0].getSize().size.y
http://jsfiddle.net/SW3tP/1/