私は Web プログラミングが初めてで、三項演算子をあまり扱っていません。jquery スライダーのサンプル コードを見つけましたが、ユーザーがバナーの上にマウスを移動すると停止するように編集する必要があります。私は誰かが私が以下のコードを if と else if ステートメントの単純なセットに変えるのを手伝ってくれることを望んでいました。前もって感謝します。
//Get next image, when it reaches the end, rotate it back to the first image
var next = ((current.next().length) ? ((current.next().hasClass('show')) ? $('div.rotator ul li:first') :current.next()) : $('div.rotator ul li:first'));