使用此事件获取html元素的宽度

时间:2016-07-25 05:14:48

标签: javascript jquery meteor

此流星客户端代码需要事件发生但未能获取的元素的宽度。怎么做到呢?感谢

Template.swipe.events({
  'mouseup .swipe': function(e) {
    utility.mouseUp(e);
  }
});

utility = (function () {

  return {
    mouseUp: (event) => {
      console.log(event.currentTarget.width);
    }
}());

1 个答案:

答案 0 :(得分:0)

使用event.currentTarget.offsetWidth属性而不是width