三目表达式:
var oStyle = tt.currentStyle? tt.currentStyle : window.getComputedStyle(tt, null);
console.log(oStyle.width)
如果不考虑IE:直接获取辣鸡IE console.log(getComputedStyle(tt)["width"])
本文共 228 字,大约阅读时间需要 1 分钟。
三目表达式:
var oStyle = tt.currentStyle? tt.currentStyle : window.getComputedStyle(tt, null);
console.log(oStyle.width)
如果不考虑IE:直接获取辣鸡IE console.log(getComputedStyle(tt)["width"])
转载于:https://www.cnblogs.com/dujunfeng/p/8011108.html