懂AS的能帮我看看这个时间代码错在什么地方吗?
date = new Date();
h = date.getHours();
m = date.getMinutes();
s = date.getSeconds();
if (h < 10)
{
_parent.clock_mc.hourA.gotoAndStop(1);
_parent.clock_mc.hourB.gotoAndStop(Number(substring(1, 1)h, ) + 1);
}
else
{
_parent.clock_mc.hourA.gotoAndStop(Number(substring(1, 1)h, ) + 1);
_parent.clock_mc.hourB.gotoAndStop(Number(substring(2, 1)h, ) + 1);
} // end else if
if (m < 10)
{
_parent.clock_mc.minA.gotoAndStop(1);
_parent.clock_mc.minB.gotoAndStop(Number(substring(1, 1)m, ) + 1);
}
else
{
_parent.clock_mc.minA.gotoAndStop(Number(substring(1, 1)m, ) + 1);
_parent.clock_mc.minB.gotoAndStop(Number(substring(2, 1)m, ) + 1);
} // end else if
if (s < 10)
{
_parent.clock_mc.secA.gotoAndStop(1);
_parent.clock_mc.secB.gotoAndStop(Number(substring(1, 1)s, ) + 1);
}
else
{
_parent.clock_mc.secA.gotoAndStop(Number(substring(1, 1)s, ) + 1);
_parent.clock_mc.secB.gotoAndStop(Number(substring(2, 1)s, ) + 1);
} // end else if