如何在 jQuery 中跳跃或转义链。
例如。
$("h3").click(function(){
//doSomething
if(~~)
// in this case, escape chain(A and B function will be not work)
else if(~~)
// in this case, jump to B case(A function will be not work)
})
.bind(A, function(){
do A case.
})
.bind(B, function(){
do B case.
});
可能吗?