1.改变样式
let dom = document.querySelectorAll('.waListHeight  .ant-table-body');
dom[0].style.height ='100px';

let dom = document.querySelectorAll('.waListHeight');
dom[0].style.height ='100px';

2.给元素添加类名
document.querySelector("html").classList.add("noscroll");

3.给元素删除类
document.querySelector("html").classList.remove("noscroll");
 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-17
  • 2022-02-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-07-22
  • 2021-06-28
  • 2022-12-23
相关资源
相似解决方案