我想在我的页面中添加 3 个 div。但在此之前,我想在页面上找到 z-index 的最高值,然后将 +1 加到这个值上,并将这个新值加到这 3 个 div 的 css 中。我如何在 jQuery 中做到这一点?
例如
<div id="one">
<div id="two"></div>
<div id="three"></div>
</div>
和CSS
#one {width:200px; z-index: +1 to the highest value found ;}
#two {width:100px; z-index: +1 to the highest value found ;}
#three {width:50px; z-index: +1 to the highest value found ;}