求解,为什么会出现 Cannot read property left✀of null

2024-11-27 14:52:12
推荐回答(1个)
回答1:

要使用
if(flag){
a.style.top = "";
}else{
a.style.top = "";
}

第二style问题应该加入变量
var temp ;
if(flag){
temp = "";
}else{
temp = "";
}
a.style.top = temp;