level 1
if( control == true)
{
_con.removeChildren();
control = false;
}
else
{
_con.addChild(html);
control = true;
}
这段话用三元表达式写是怎么样.求各位大神告知
2015年06月04日 03点06分
1
level 2
control ?(_con.removeChildren();
control = false;):(_con.addChild(html);
control = true;);
2015年06月28日 17点06分
3