此流星客户端代码需要事件发生但未能获取的元素的宽度。怎么做到呢?感谢
Template.swipe.events({
'mouseup .swipe': function(e) {
utility.mouseUp(e);
}
});
utility = (function () {
return {
mouseUp: (event) => {
console.log(event.currentTarget.width);
}
}());
答案 0 :(得分:0)
使用event.currentTarget.offsetWidth
属性而不是width
。