(兼容)复制一个dom的所有样式,到另一个dom

13 篇文章 0 订阅

如果不要求支持IE, 那么只要一行。

dom.style.cssText = window.getComputedStyle(srcDom, null).cssText;

如果要 兼容各个浏览器,那么要原始一点:

/**
 * IE8不支持window.getComputedStyle
 * IE9~11中,window.getComputedStyle().cssText返回的总为空字符串
 * 默认的window.getComputedStyle || dom.currentStyle, 返回的css键值对中,键是驼峰命名的。
 */
var oStyle = (window.getComputedStyle && window.getComputedStyle(srcDom, null)) || srcDom.currentStyle,
    cssText = '';
for (var key in oStyle) {
    var v = oStyle[key];
    if (/^[a-z]/i.test(key) && [null, '', undefined].indexOf(v) === -1) {
        dom.style[key] = v;
    }
}

参考资料:

【1】获取元素CSS值之getComputedStyle方法熟悉

【2】Copy all styles from one element to another

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值