有没有办法检查元素的父节点,并找到第一个有一个CSS背景设置,然后返回那个背景值?
就像是:
var background = $('element').parents().has(css('background'));
更新:
这是我现在使用的代码:
jQuery.fn.getBg = function(){ var newBackground = this.parents().filter(function() { return $(this).css('background-color').length > 0; }).eq(0).css('background-color'); $(this).css('background-color',newBackground); console.log("new background is: "+newBackground); };
解决方法
如果没有设置,获取它将产生一个空字符串。因此
var bg = ('element').parents().filter(function() { return $(this).css('background').length > 0; }).eq(0)
编辑
一些研究表明,css(‘background’)将总是产生一个空字符串,或未定义,取决于浏览器。 css(‘background-color’)将正确返回当前元素的颜色;但每个浏览器的值也不同,所以测试很麻烦(IE中透明,firefox / chrome中的rgba(0,0),例如,都是指定透明的精确方法)。
jQuery.fn.getBg = function() { return $(this).parents().filter(function() { // only checking for IE and Firefox/Chrome. add values as cross-browser compatibility is required var color = $(this).css('background-color'); return color != 'transparent' && color != 'rgba(0,0)'; }).eq(0).css('background-color'); };