if (this.firstChild.style.display == 'none')
{this.firstChild.style.display = 'block'}
else
{this.firstChild.style.display = 'none'};
是否可以使用变量缩短此代码?
if (this.firstChild.style.display == 'none')
{this.firstChild.style.display = 'block'}
else
{this.firstChild.style.display = 'none'};
是否可以使用变量缩短此代码?
你可以像这样缩短它:
var a = this.firstChild.style;
a.display = (a.display=='none'?'block':'none');
var childStyle=this.firstChild.style;
if ( childStyle.display == 'none'){
childStyle.display = 'block';
}
else{
childStyle.display = 'none';
}
将是等价的。
您可以使用三元运算符进一步缩短,例如
var childStyle=this.firstChild.style;
childStyle.display=(childStyle.display=='none')?'block':'none';
如果你选择 jquery 比它更短
$("div span:first-child").toggle();
或者
$(this).find(">:first-child").toggle();
顺便说一句,这可以是另一种选择吗?
with this.firstChild.style.display{this=(this=='none')?'block':'none';}
尝试:
var elstyle = this.firstChild.style;
elstyle.display = /block/i.test(elstyle.display) ? 'none' : 'block'