使用 Javascript 指定 class 的颜色

Specify color of class using Javascript

参考 here 上的现场代码笔演示。当你点击网格时,它会显示蓝色箭头。有没有办法指定使用 javascript 显示的箭头颜色?我只知道如何使用 css 指定颜色,但我需要将颜色指定在 Javascript 中,以便用户可以对其进行操作 :) 感谢您的阅读,祝您周末愉快 :)

 .red-dot {
      position:absolute; 
      width:55px; 
      height:55px;
      background:blue;
      pointer-events: none;
    clip-path: polygon(57% 0, 58% 48%, 75% 49%, 49% 100%, 22% 49%, 39% 48%, 39% 0);
    
    }

你可以使用这个:

newDot.style.background = '<your background here>';