我想要一个弹出窗口来显示onMouseOver,我可以在下面做。但是,我怎样才能删除onMouseOut类?
// Get the snackbar DIV
var x = document.getElementById("snackbar2")
// Add the "show" class to DIV
x.className = "show";
答案 0 :(得分:0)
添加课程:
x.classList.add('show');
删除课程:
x.classList.remove('show');
要打开和关闭课程:
x.classList.toggle('show');
检查元素是否有类:
if (x.classList.contains('show'))