get-width.js 332 B

12345678910111213
  1. /**
  2. * 获取宽度
  3. * @param {HTMLElement} el dom节点
  4. * @param {Number} defaultValue 默认值
  5. * @return {Number} 宽度
  6. */
  7. module.exports = function getWidth(el, defaultValue) {
  8. var width = this.getStyle(el, 'width', defaultValue);
  9. if (width === 'auto') {
  10. width = el.offsetWidth;
  11. }
  12. return parseFloat(width);
  13. };