在Prototype.js中获取元素的外部宽度

时间:2012-06-06 09:13:47

标签: javascript prototypejs

Prototype.js有一种返回元素外部宽度的简单方法吗?

即:宽度+左/右填充+左/右边框。

就像jQuery的.outerWidth()

1 个答案:

答案 0 :(得分:2)

Element.Layout可以在这方面为您提供帮助,这是一个完整的fiddle demonstrating the options

来自FIDDLE的代码

var layout = $('d1').getLayout();
console.log('My Width : ' + layout.get('width') + 'px');
console.log('My Full Width : ' + layout.get('border-box-width') + 'px');