fuction a()
{
}
function b()
{
}
<input type=button onclick="a();b()">
现在想在a中退出函数,并不再执行b(),用return只是退出当前函数。如何让他不再执行后面的b()呢