返回元素的计算样式以伪克隆该元素的jQuery CSS插件吗?


68

我正在寻找一种使用jQuery返回第一个匹配元素的计算样式的对象的方法。然后,我可以将此对象传递给jQuery的CSS方法的另一个调用。

例如,使用width,我可以执行以下操作以使2个div具有相同的宽度:

$('#div2').width($('#div1').width());

如果我可以使文本输入看起来像现有的span,那将是很好的:

$('#input1').css($('#span1').css());

其中不带参数的.css()返回可以传递给.css(obj)的对象

(我找不到为此的jQuery插件,但似乎应该存在。如果不存在,我将在下面将我的插件变成一个插件,并将其与我使用的所有属性一起发布。)

基本上,我想伪克隆某些元素,但使用不同的tag。例如,我有一个li元素要隐藏,并在其上放置一个看起来相同的输入元素。用户键入时,看起来他们正在编辑inline元素

对于此伪克隆问题,我也开放其他方法进行编辑。有什么建议?

这是我目前拥有的。唯一的问题就是获取所有可能的样式。这可能是一堆荒谬的清单。


jQuery.fn.css2 = jQuery.fn.css;
jQuery.fn.css = function() {
    if (arguments.length) return jQuery.fn.css2.apply(this, arguments);
    var attr = ['font-family','font-size','font-weight','font-style','color',
    'text-transform','text-decoration','letter-spacing','word-spacing',
    'line-height','text-align','vertical-align','direction','background-color',
    'background-image','background-repeat','background-position',
    'background-attachment','opacity','width','height','top','right','bottom',
    'left','margin-top','margin-right','margin-bottom','margin-left',
    'padding-top','padding-right','padding-bottom','padding-left',
    'border-top-width','border-right-width','border-bottom-width',
    'border-left-width','border-top-color','border-right-color',
    'border-bottom-color','border-left-color','border-top-style',
    'border-right-style','border-bottom-style','border-left-style','position',
    'display','visibility','z-index','overflow-x','overflow-y','white-space',
    'clip','float','clear','cursor','list-style-image','list-style-position',
    'list-style-type','marker-offset'];
    var len = attr.length, obj = {};
    for (var i = 0; i < len; i++) 
        obj[attr[i]] = jQuery.fn.css2.call(this, attr[i]);
    return obj;
}

编辑:我现在已经使用了一段时间的代码。它运行良好,并且行为与原始css方法完全相同,但有一个例外:如果传​​递了0个args,它将返回计算出的样式对象。

如您所见,在这种情况下,它将立即调用原始的CSS方法。否则,它将获取所有列出的属性的计算样式(从Firebug的计算样式列表中收集)。尽管它的值列表很长,但速度非常快。希望对其他人有用。


4
我想知道您的问题是否可以通过CSS类更好地解决?
支出者

我也想看到一个解决方案,但是我建议不要遍历每种计算风格。当我使用非jQuery的但获取计算样式的标准方法时,仅需要一个属性就需要1-1.5ms。在获取每个属性的数组中运行可能会增加相当大的滞后时间。
伊恩·埃利奥特

@Ian,在我2岁以上的旧笔记本电脑上分析了以上内容,它在7毫秒内克隆了大约50个属性。
基思·本特鲁普


1
您无需使用污染jQuery.fn名称空间css2。如果使用闭包,则只需将原始函数转换就位。在这里查看我的编辑内容:stackoverflow.com/a/1471256/399649
贾斯汀·摩根

Answers:


61

迟了两年,但是我有您想要的解决方案。这是我写的一个插件(通过用插件格式包装另一个人的功能),可以完全满足您的要求,但是可以在所有浏览器(甚至是IE)中获得所有可能的样式。

jquery.getStyleObject.js:

/*
 * getStyleObject Plugin for jQuery JavaScript Library
 * From: http://upshots.org/?p=112
 *
 * Copyright: Unknown, see source link
 * Plugin version by Dakota Schneider (http://hackthetruth.org)
 */

(function($){
    $.fn.getStyleObject = function(){
        var dom = this.get(0);
        var style;
        var returns = {};
        if(window.getComputedStyle){
            var camelize = function(a,b){
                return b.toUpperCase();
            }
            style = window.getComputedStyle(dom, null);
            for(var i=0;i<style.length;i++){
                var prop = style[i];
                var camel = prop.replace(/\-([a-z])/g, camelize);
                var val = style.getPropertyValue(prop);
                returns[camel] = val;
            }
            return returns;
        }
        if(dom.currentStyle){
            style = dom.currentStyle;
            for(var prop in style){
                returns[prop] = style[prop];
            }
            return returns;
        }
        return this.css();
    }
})(jQuery);

基本用法非常简单:

var style = $("#original").getStyleObject(); // copy all computed CSS properties
$("#original").clone() // clone the object
    .parent() // select it's parent
    .appendTo() // append the cloned object to the parent, after the original
                // (though this could really be anywhere and ought to be somewhere
                // else to show that the styles aren't just inherited again
    .css(style); // apply cloned styles

希望能有所帮助。


2
只需将其更改var camel = prop.replace(/\-([a-z])/, camelize);为即可var camel = prop.replace(/\-([a-z])/g, camelize);,并且效果很好。谢谢!
伊万

1
@达科他州:+1。但是我最后加了括号- getStyleObject();; 因为样式否则会包含一个函数,而不是所有样式的对象;)
Mottie 2011年

1
是否有任何机会/方式使其与更新的CSS3属性(例如变换,翻译等)一起使用?这不会做那些
TrySpace 2013年

有没有办法以各自的样式获取所有内部元素?内部元素没有得到他们的样式。
Half Blood Prince

@HalfBloodPrince正在寻找相同的内容,请参阅此页面上不符合标准的人的回答。
majick '16

23

它不是jQuery,但在Firefox,Opera和Safari中,您可以window.getComputedStyle(element)用来获取元素的计算样式,而在IE <= 8中,可以使用element.currentStyle。返回的对象在每种情况下都是不同的,并且我不确定使用Javascript创建的元素和样式的效果如何,但也许它们会有用。

在Safari中,您可以执行以下整洁的操作:

document.getElementById('b').style.cssText = window.getComputedStyle(document.getElementById('a')).cssText;

谢谢。在进一步研究了此问题之后,jQuery在css方法中使用了这些方法,因此它将重写已经存在的内容。
基思·本特鲁普

值得一提的window.getComputedStyle是,现在得到了很好的支持:caniuse.com/getcomputedstyle
abernier 2013年

5

我不知道您是否对迄今获得的答案感到满意,但我不是,我也可能不会取悦您,但这可能会帮助其他人。

在考虑了如何将元素的样式从一种“克隆”或“复制”到另一种之后,我逐渐意识到,循环遍历n并应用于n2的方法并不是很理想,但是我们对此仍然有些犹豫。

当您发现自己面临这些问题时,您几乎不需要将所有样式从一个元素复制到另一个元素……您通常有特定的理由希望应用“某些”样式。

这是我回复的内容:

$.fn.copyCSS = function( style, toNode ){
  var self = $(this);
  if( !$.isArray( style ) ) style=style.split(' ');
  $.each( style, function( i, name ){ toNode.css( name, self.css(name) ) } );
  return self;
}

您可以将以空格分隔的css属性列表作为第一个参数传递给它,并将要克隆它们的节点作为第二个参数传递给它,如下所示:

$('div#copyFrom').copyCSS('width height color',$('div#copyTo'));

此后,无论其他什么似乎“错位”,我都将尝试使用样式表进行修复,以免JS出现过多错误的想法。


3

既然我已经花了一些时间来研究问题并更好地了解jQuery的内部CSS方法是如何工作的,那么我发布的内容似乎对于我提到的用例来说已经足够好了。

有人建议您可以使用CSS解决此问题,但是我认为这是一种更通用的解决方案,在任何情况下都可以使用,而无需添加remove类或更新CSS。

我希望其他人觉得它有用。如果您发现错误,请告诉我。


3

我喜欢你的答案Quickredfox。我需要复制一些CSS,但不是立即复制,因此我对其进行了修改,以使“ toNode”成为可选。

$.fn.copyCSS = function( style, toNode ){
  var self = $(this),
   styleObj = {},
   has_toNode = typeof toNode != 'undefined' ? true: false;
 if( !$.isArray( style ) ) {
  style=style.split(' ');
 }
  $.each( style, function( i, name ){ 
  if(has_toNode) {
   toNode.css( name, self.css(name) );
  } else {
   styleObj[name] = self.css(name);
  }  
 });
  return ( has_toNode ? self : styleObj );
}

如果您这样称呼它:

$('div#copyFrom').copyCSS('width height color');

然后它将返回一个带有CSS声明的对象,供您以后使用:

{
 'width': '140px',
 'height': '860px',
 'color': 'rgb(238, 238, 238)'
}

感谢您的起点。


3

多用途 .css()

用法

$('body').css();        // -> { ... } - returns all styles
$('body').css('*');     // -> { ... } - the same (more verbose)
$('body').css('color width height')  // -> { color: .., width: .., height: .. } - returns requested styles
$('div').css('width height', '100%')  // set width and color to 100%, returns self
$('body').css('color')  // -> '#000' - native behaviour

(function($) {

    // Monkey-patching original .css() method
    var nativeCss = $.fn.css;

    var camelCase = $.camelCase || function(str) {
        return str.replace(/\-([a-z])/g, function($0, $1) { return $1.toUpperCase(); });
    };

    $.fn.css = function(name, value) {
        if (name == null || name === '*') {
            var elem = this.get(0), css, returns = {};
            if (window.getComputedStyle) {
                css = window.getComputedStyle(elem, null);
                for (var i = 0, l = css.length; i < l; i++) {
                    returns[camelCase(css[i])] = css.getPropertyValue(css[i]);
                }
                return returns;
            } else if (elem.currentStyle) {
                css = elem.currentStyle;
                for (var prop in css) {
                    returns[prop] = css[prop];
                }
            }
            return returns;
        } else if (~name.indexOf(' ')) {
            var names = name.split(/ +/);
            var css = {};
            for (var i = 0, l = names.length; i < l; i++) {
                css[names[i]] = nativeCss.call(this, names[i], value);
            }
            return arguments.length > 1 ? this : css;
        } else {
            return nativeCss.apply(this, arguments);
        }
    }

})(jQuery);

主要思想来自DakotaHexInteractive的答案。


1
这真太了不起了!我可能会建议改进la HexInteractive的答案:添加一个else if(name.split(' ').length > 1)并建立一个以空格分隔的CSS值的对象,用于$('body').css('color padding width') // -> { ... }
Michael

谢谢。添加了以空格分隔的语法。请测试。
2013年

功能强大!但是可能您还需要在开始时添加一个用于undefined的条件:if(name == undefined || name == null || name ==='*')才能正常工作。
gigaDIE 2014年

“名称== null”也处理未定义。哎呀:undefined == null =>返回true。
2014年

谢谢,添加$('div')。css('*:not(display)')非常方便
Mike

3

我只是想为Dakota提交的代码添加扩展名。

如果要克隆应用了所有样式的元素以及所有子元素,则可以使用以下代码:

/*
 * getStyleObject Plugin for jQuery JavaScript Library
 * From: http://upshots.org/?p=112
 *
 * Copyright: Unknown, see source link
 * Plugin version by Dakota Schneider (http://hackthetruth.org)
 */

(function($){
    $.fn.getStyleObject = function(){
        var dom = this.get(0);
        var style;
        var returns = {};
        if(window.getComputedStyle){
            var camelize = function(a,b){
                return b.toUpperCase();
            }
            style = window.getComputedStyle(dom, null);
            for(var i=0;i<style.length;i++){
                var prop = style[i];
                var camel = prop.replace(/\-([a-z])/g, camelize);
                var val = style.getPropertyValue(prop);
                returns[camel] = val;
            }
            return returns;
        }
        if(dom.currentStyle){
            style = dom.currentStyle;
            for(var prop in style){
                returns[prop] = style[prop];
            }
            return returns;
        }
        return this.css();
    }


    $.fn.cloneWithCSS = function() {
        var styles = {};

        var $this = $(this);
        var $clone = $this.clone();

        $clone.css( $this.getStyleObject() );

        var children = $this.children().toArray();
        var i = 0;
        while( children.length ) {
            var $child = $( children.pop() );
            styles[i++] = $child.getStyleObject();
            $child.children().each(function(i, el) {
                children.push(el);
            })
        }

        var cloneChildren = $clone.children().toArray()
        var i = 0;
        while( cloneChildren.length ) {
            var $child = $( cloneChildren.pop() );
            $child.css( styles[i++] );
            $child.children().each(function(i, el) {
                cloneChildren.push(el);
            })
        }

        return $clone
    }

})(jQuery);

然后,您可以执行以下操作: $clone = $("#target").cloneWithCSS()


2

OP提供的强大功能。我对其进行了少许修改,以便您可以选择要返回的值。

(function ($) {
    var jQuery_css = $.fn.css,
        gAttr = ['font-family','font-size','font-weight','font-style','color','text-transform','text-decoration','letter-spacing','word-spacing','line-height','text-align','vertical-align','direction','background-color','background-image','background-repeat','background-position','background-attachment','opacity','width','height','top','right','bottom','left','margin-top','margin-right','margin-bottom','margin-left','padding-top','padding-right','padding-bottom','padding-left','border-top-width','border-right-width','border-bottom-width','border-left-width','border-top-color','border-right-color','border-bottom-color','border-left-color','border-top-style','border-right-style','border-bottom-style','border-left-style','position','display','visibility','z-index','overflow-x','overflow-y','white-space','clip','float','clear','cursor','list-style-image','list-style-position','list-style-type','marker-offset'];
    $.fn.css = function() {
        if (arguments.length && !$.isArray(arguments[0])) return jQuery_css.apply(this, arguments);
        var attr = arguments[0] || gAttr,
            len = attr.length,
            obj = {};
        for (var i = 0; i < len; i++) obj[attr[i]] = jQuery_css.call(this, attr[i]);
        return obj;
    }
})(jQuery);

通过指定自己的数组来选择所需的值: $().css(['width','height']);


0
$.fn.cssCopy=function(element,styles){
var self=$(this);
if(element instanceof $){
    if(styles instanceof Array){
        $.each(styles,function(val){
            self.css(val,element.css(val));
        });
    }else if(typeof styles===”string”){
        self.css(styles,element.css(styles));
    }
}
return this;
};

使用例

$("#element").cssCopy($("#element2"),['width','height','border'])
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.