如何在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
讓我們想象的功能是這樣的: function foo(x) {
x += '+';
return x;
}
它的用法是這樣的: var x, y;
x = 'Notepad';
y = foo(x);
console.log(y); // Prints 'Notepad+'.
我正在尋找一種方法來創建功能這是可鏈接的其他功能。 想象用法: var x, y;
我的問題是如何使用Zend_Controller_Router_Route_Chain鏈多個路由? 比如我想鏈年/月/日 3條路線,但戈萊是:
when url is
example.com/2011
runs index controller, year action
example.com/2011/11
runs index controller, year-month act