Javascript 相当于 .width() 和 .height()

Javascript equivalent for .width() and .height()

以下 jquery 代码的 javascript 是什么

  $(document).on({
    mousemove: function(event) {
        widget = $('.widget').last();
        x = event.pageX;
        y = event.pageY;

        widget.width(x); // here is the real problem
        widget.height(y); // here is the real problem
      }
    },
  });

试试这个:

widget = $('.widget').last()[0];
x = event.pageX;
y = event.pageY;

widget.style.width  = `${x}px`;
widget.style.height = `${y}px`;