求帮助.本人菜鸟
as3吧
全部回复
仅看楼主
level 1
asslwmf 楼主
if( control == true)
{
_con.removeChildren();
control = false;
}
else
{
_con.addChild(html);
control = true;
}
这段话用三元表达式写是怎么样.求各位大神告知
2015年06月04日 03点06分 1
level 5
菜鸟表示三元表达式是神马
2015年06月25日 04点06分 2
就是?:
2015年06月30日 02点06分
level 2
control ?(_con.removeChildren();
control = false;):(_con.addChild(html);
control = true;);
2015年06月28日 17点06分 3
level 11
条件?成立:不成立
2015年09月16日 02点09分 5
1