我想要div
切换其类(切换)onclick,然后再次恢复到原始类 onclick
我的代码是:
function myfunc() {
//the code over here
}
.normal {
width:25%;
height:25%;
background: #f00;
}
.active {
width:100%;
height:100%;
background: #f00;
}
#div{}
<body>
<div id="div" onclick="myfunc()">click here</div>
</body>