为了账号安全,请及时绑定邮箱和手机立即绑定

js获取样式

var display = this.currentStyle? this.currentStyle.display: window.getComputedStyle(this, null).display;

老师能不能解释下这句话?

var display = this.style.display不行吗?

正在回答

1 回答

这是一个if else 简写 

if(this.currentStyle){
     this.currentStyle.display
}else{
     window.getComputedStyle(this, null).display;
}

主要是为了兼容IE

this.style.display不能获取外部CSS样式

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

js获取样式

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信