现在,我有不同的元素z-index
,我想使用 jQuery 对它们进行分组。
<div class="float" style="z-index:2"></div>
<div class="float" style="z-index:6"></div>
<div class="float" style="z-index:10"></div>
.
.
.
<!-- You get the point -->
我可以用它.attr("style")
来获取z-index
价值,但这样做似乎不是一个好主意。(有时它也可能在<style>
标签中)有类似的东西吗?
var ele = $("*[zindex=5]");
期待任何解决方案。