z-index
たとえば、= 10のHTML要素を見つける方法は?
質問する
8801 次
4 に答える
17
すべての要素を繰り返し処理し、それらのz-indexを確認する必要があります。
$('*').filter(function() {
return $(this).css('z-index') == 10;
}).each(function() {
// do something with them
});
于 2012-04-13T15:38:16.120 に答える
2
1つの可能な[jQuery]ソリューション:
$(".elementsToSearch").each(function()
{
if($(this).css('z-index') == 10)
{
//then it's a match
}
});
cssルールに一致するものを検索する要素をループするだけです。
于 2012-04-13T15:38:32.127 に答える
2
すべての要素を取得し、cssプロパティでフィルタリングできます。
$('*').each(function(){
if($(this).css('z-index') == 10) {
//$(this) - is element what you need
}
});
于 2012-04-13T15:39:30.633 に答える
0
Chrome 43でのテストでは、@ ThiefMasterの投稿は役に立ちましたが、100%ではありませんでした。z-index
プルされる値は文字列でした。
また、これを表示されている要素とハンドルに対してのみ反復するようにしauto
ました。
これが私の更新です:
var topZ = $('.thing-in-front').css('z-index')
if (topZ != 'auto') {
topZ = parseInt(topZ);
$('*:visible').filter(function() {
var thisZ = $(this).css('z-index')
return thisZ != 'auto' && parseInt(thisZ) >= topZ;
}).each(function() {
$(this).css('z-index', topZ - 1);
})
}
于 2015-05-27T16:34:17.710 に答える