2017-05-30 38 views

回答

0

請嘗試以下的一段代碼被觸發,它可能解決您的問題。

$("#buttonZZ").on("keydown",function (eve) { 
 
     if(eve.keyCode == 9) { 
 
      if(eve.shiftKey) { 
 
       //Focus previous input 
 
      } 
 
      else { 
 
       //Focus next input 
 
      } 
 
      } 
 
    });