使用jQuery选择位置为“fixed”的所有元素

时间:2017-04-22 15:45:40

标签: javascript jquery

如何使用jQuery

选择位置为“fixed”的html页面中的所有元素

1 个答案:

答案 0 :(得分:1)

var find = $('*').filter(function () { 
    return $(this).css('position') == 'fixed';
});

https://stackoverflow.com/a/35055063/7869582