我是网络编程的新手,对三元运算符的处理不多。我找到了一些 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'));