给一个添加了弹性布局并设置了默认显示方式为none的div绑定了点击事件,让它触发点击事件时,显示方式会变为block。但点击该div时,并没有完全显示
width: 310px; height: 50px; background-color: black; border-radius: 50px; margin-left: 5%; position: fixed; justify-content: space-between; bottom: 0; display: flex; display: none;
解决方法:
在JS中将该元素的style设置为flex及block
document.getElementById("money-list").style.display = "block" && "flex";