我正在使用this script为页面上的元素提取样式信息,然后将这些样式应用于第二个元素,但出于某种原因,它仅适用于Chrome和Safari [不是Firefox或IE浏览器]。这是有问题的,因为我主要需要这个用于Internet Explorer。
以下是演示:http://jsfiddle.net/J3tSx/1/
脚本:
$(document).ready(function() {
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;
}
/*
$("#test_div").click(function() {
alert("clicked");
if (!$(this).hasClass("hovered")) {
alert("detected no hovered class");
$(this).addClass("hovered");
alert("added hovered class");
var hoverStyle = css($("#test_div"));
alert("created the hoverStyle variable");
$("#second_div").css(hoverStyle);
alert("applied the hoverStyle variable to #second_div");
}
});
*/
var hoverStyle = css($("#test_div"));
alert("created the hoverStyle variable");
$("#second_div").css(hoverStyle);
alert("applied the hoverStyle variable to #second_div");
});
HTML:
<section id="test_div">
</section>
<section id="second_div">
</section>
更新:奇怪的是IE和Firefox都没有抛出任何错误。它们就像#test_div
没有样式一样,因此没有样式添加到#second_div
。很奇怪。
更新2:我刚注意到这段代码:
var s = {};
if (!css) return s;
我认为这可能与它有关。
我尝试过的事情
答案 0 :(得分:1)
看起来该功能并没有获得IE和FireFox中所有元素的样式。您可以使用console.log(hoverStyle)
查看正在检索的样式。在FireFox中仅显示color
,height
和width
。
尝试将此解决方案作为第二个答案提供here。 (确保赞成原帖!)
/*
* 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);
这适用于FireFox和IE:FIDDLE。