更新我想避免回过所有元素的父母,依次测试每个元素,但这是我迄今为止找到的最佳解决方案,如{{3 }}
在事件处理程序中,我想检测目标元素的位置是相对于视口(固定)还是文档(静态,相对或绝对)。
鉴于元素的位置可能是固定的,因为它具有“position:fixed”,或者因为它的一个父元素是“position:fixed”,所以检测元素的固定定位的有效方法是什么?
例如:
CSS
#one {position:relative; height:10px; width:10px}
#two-wrapper {position:fixed; bottom:0; height:10px; width:10px}
#two {height:10px; width:10px}
HTML
<div id="one" class="trigger-event">element one</div>
<div id="two-wrapper">
<div id="two" class="trigger-event">element two</div>
</div>
JS
$(document).ready(function(){
$('.trigger-event').on('mouseenter', function(event){
var isFixed = .... ????
if (isFixed) {
$(event.target).css('background','red');
} else {
$(event.target).css('background','green');
}
});
});
答案 0 :(得分:14)
这是一个基于遍历元素父节点的解决方案,依次检查每个元素的CSS位置值。
这是最有效的方法,还是只有通过检查元素本身来检测有效定位?
CSS
.trigger-event {background:#ccc}
#one {position:relative; height:50px; width:50px}
#two-wrapper {position:fixed; bottom:0; height:50px; width:50px}
#two {height:50px; width:50px}
HTML
<div id="one" class="trigger-event">element one</div>
<div id="two-wrapper">
<div id="two" class="trigger-event">element two</div>
</div>
JS
function elementOrParentIsFixed(element) {
var $element = $(element);
var $checkElements = $element.add($element.parents());
var isFixed = false;
$checkElements.each(function(){
if ($(this).css("position") === "fixed") {
isFixed = true;
return false;
}
});
return isFixed;
}
$(document).ready(function(){
$('.trigger-event').on('mouseenter', function(event){
var isFixed = elementOrParentIsFixed(event.target);
if (isFixed) {
$(event.target).css('background','red');
} else {
$(event.target).css('background','green');
}
});
});
答案 1 :(得分:6)
使用$(selector).offsetParent(),您可以搜索选择器的祖先,而无需加载所有父元素。它仍然必须遍历元素父元素,但一旦找到具有所选位置的最接近元素(相对,绝对或固定),它将停止。
http://jsfiddle.net/89y1buz9/11/
<强> CSS:强>
div {
border: 1px solid #ccc;
}
#outer {
height: 200px;
width: 120px;
position: fixed;
padding-top: 20px;
}
#inner {
width: 95px;
height: 150px;
margin: 0px auto;
position: relative;
}
#clickme {
width: 70px;
height: 50px;
cursor: pointer;
text-align: center;
line-height: 40px;
margin: 20px auto;
}
<强> HTML:强>
<div id="outer">
<div id="inner">
<div id="clickme">ClickMe</div>
</div>
</div>
<强>使用Javascript:强>
function isFixed(ele, posType) {
var eleCheck = ele.offsetParent(),
returnVal;
posType = posType || "fixed";
if (eleCheck.prop("tagName") === 'HTML') {
return false;
}
returnVal = (eleCheck.css("position") !== posType) ? isFixed(eleCheck): posType;
return returnVal;
}
<强>用法:强> 使用或不使用默认搜索固定元素的第二个参数调用它
$(function () {
$("#clickme").on("click", function () {
if (isFixed($(this), "fixed") === "fixed") {
$(this).css("background", "red");
} else {
$(this).css("background", "green");
}
});
});
答案 2 :(得分:1)
更新,见下文......
我在这里搜索一个纯粹的JavaScript解决方案时放弃了...但我希望有人会喜欢我的jquery版本。
这里有两个功能略有不同,但性能差异很小。我没有测量它,但根据jsperf "each vs filter"上的此测试,.each()
版本稍快一些。
尽管如此,我喜欢.filter()
版本,因为它非常简短明了。
$.fn.isfixed = function(){
var el = $(this);
var all = el.add(el.parents());
return all.filter(function(){
return $(this).css("position") === "fixed";
}).length > 0;
};
$.fn.isfixed = function(){
var el = $(this);
var all = el.add(el.parents());
var ret = false;
all.each(function(){
if ($(this).css("position") === "fixed") {
ret = true;
return false;
}
});
return ret;
};
用法为$('path > to > your > element').isfixed()
,并返回true
或false
<强>更新强>
这是纯粹的javascript版本。事实证明,检测el.style.position
(固定/绝对/相对)不起作用,不知道原因,但window.getComputedStyle(el)...
确实如此。
var isfixed = function(elm) {
var el;
if (typeof elm === 'object') el = elm[0] || elm;
else if (typeof elm === 'string') el = document.querySelector(elm);
while (typeof el === 'object' && el.nodeName.toLowerCase() !== 'body') {
if (window.getComputedStyle(el).getPropertyValue('position').toLowerCase() === 'fixed') return true;
el = el.parentElement;
}
return false;
};
它接受三种元素参数:
作为javascript对象:
var obj = document.querySelector('div#myID > span');
或
var obj = document.getElementById('span#someID');
作为jquery对象:
var obj = $('div#myID > span');
或仅作为选择器:
var obj = 'div#myID > span';
用法只是isfixed(obj);
,并提供布尔true
或false
最后是混合解决方案(纯javascript作为jquery插件)
$.fn.isfixed = function(){
var el = this[0];
while (typeof el === 'object' && el.nodeName.toLowerCase() !== 'body') {
if (window.getComputedStyle(el).getPropertyValue('position').toLowerCase() === 'fixed') return true;
el = el.parentElement;
}
return false;
};
用法:$('div#myID > span').isfixed()
,如上例所示
希望你喜欢它。
答案 3 :(得分:0)
我采用了上述一些示例,并制作了简单的JS原始代码来获取元素的位置,因此您可以在jQuery中使用它,也可以不使用jQuery。
function getStylePosition(element){
return window.getComputedStyle(element).getPropertyValue('position');
}
// use it like this
var element = document.getElementsByTagName('div')[0];
// js only
alert(getStylePosition(element));
// jQuery
alert(getStylePosition($('div')[0]));
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div style="position:fixed;"></div>
答案 4 :(得分:0)
这就是我现在用来检测可能嵌套在position:fixed
父级中的元素的原因。 (基于another answer的null
值有问题。)
// Returns true if `node` uses css position:fixed or has a parent that does so.
function isFixedPosition(node) {
while (node && node.nodeName.toLowerCase() !== 'body') {
if (window.getComputedStyle(node).getPropertyValue('position').toLowerCase() === 'fixed')
{ return true; }
node = node.parentNode;
}
return false; // if got this far
}
答案 5 :(得分:-1)
$(document).ready(function(){
$('.trigger-element').on('mouseenter', function(event){
var position= $(this).css("position");
if (position=="fixed") {
$(event.target).css('background','red');
} else {
$(event.target).css('background','green');
}
});
});