# js动态修改zIndex


```javascript
document.querySelectorAll('.bg-near-white').forEach(item=>{
	item.style.zIndex=-1;
});
```
