Risposte:
Un paio d'anni in ritardo, ma ecco una soluzione che recupera sia lo stile in linea che lo stile esterno:
function css(a) {
var sheets = document.styleSheets, o = {};
for (var i in sheets) {
var rules = sheets[i].rules || sheets[i].cssRules;
for (var r in rules) {
if (a.is(rules[r].selectorText)) {
o = $.extend(o, css2json(rules[r].style), css2json(a.attr('style')));
}
}
}
return o;
}
function css2json(css) {
var s = {};
if (!css) return s;
if (css instanceof CSSStyleDeclaration) {
for (var i in css) {
if ((css[i]).toLowerCase) {
s[(css[i]).toLowerCase()] = (css[css[i]]);
}
}
} else if (typeof css == "string") {
css = css.split("; ");
for (var i in css) {
var l = css[i].split(": ");
s[l[0].toLowerCase()] = (l[1]);
}
}
return s;
}
Passa un oggetto jQuery in css()
e restituirà un oggetto, che puoi quindi ricollegare in jQuery $().css()
, ad esempio:
var style = css($("#elementToGetAllCSS"));
$("#elementToPutStyleInto").css(style);
:)
Due anni di ritardo, ma ho la soluzione che stai cercando. Non intendendo prendere il merito dall'autore originale , ecco un plugin che ho trovato funziona eccezionalmente bene per quello che ti serve, ma ottiene tutti gli stili possibili in tutti i browser, anche IE.
Avvertimento: questo codice genera molto output e deve essere usato con parsimonia. Copia non solo tutte le proprietà CSS standard, ma anche tutte le proprietà CSS del fornitore per quel browser.
jquery.getStyleObject.js:
/*
* getStyleObject Plugin for jQuery JavaScript Library
* From: http://upshots.org/?p=112
*/
(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, l = style.length; i < l; i++){
var prop = style[i];
var camel = prop.replace(/\-([a-z])/g, camelize);
var val = style.getPropertyValue(prop);
returns[camel] = val;
};
return returns;
};
if(style = dom.currentStyle){
for(var prop in style){
returns[prop] = style[prop];
};
return returns;
};
return this.css();
}
})(jQuery);
L'uso di base è piuttosto semplice, ma ha scritto anche una funzione per questo:
$.fn.copyCSS = function(source){
var styles = $(source).getStyleObject();
this.css(styles);
}
Spero che aiuti.
this.css()
? Non esiste documentazione per questo metodo che non accetta argomenti e, se viene raggiunta questa affermazione, viene generata un'eccezione. Penso che sarebbe più appropriato return returns;
anche se si tratta di un oggetto vuoto.
$("#div2").copyCSS($("#div1"));
e per ottenere lo stile di qualsiasi elemento che potresti usare:JSON.stringify($('#element').getStyleObject());
Perché non utilizzare .style
l'elemento DOM ? È un oggetto che contiene membri come width
e backgroundColor
.
Avevo provato molte soluzioni diverse. Questo è stato l'unico che ha funzionato per me in quanto è stato in grado di raccogliere stili applicati a livello di classe e stile come attribuito direttamente sull'elemento. Quindi un font impostato a livello di file css e uno come attributo di stile; ha restituito il carattere corretto.
È semplice! (Spiacente, non riesco a trovare dove l'ho trovato originariamente)
//-- html object
var element = htmlObject; //e.g document.getElementById
//-- or jquery object
var element = htmlObject[0]; //e.g $(selector)
var stylearray = document.defaultView.getComputedStyle(element, null);
var font = stylearray["font-family"]
In alternativa, puoi elencare tutto lo stile scorrendo l'array
for (var key in stylearray) {
console.log(key + ': ' + stylearray[key];
}
La soluzione di @ marknadal non stava afferrando le proprietà sillabate per me (ad es. max-width
), ma cambiando il primo for
ciclo in css2json()
funzionava, e sospetto che esegua meno iterazioni:
for (var i = 0; i < css.length; i += 1) {
s[css[i]] = css.getPropertyValue(css[i]);
}
Passa tramite length
anziché in,
recupera tramite getPropertyValue()
anzichétoLowerCase().