Javascript 函数适用于两者,而不是分别适用于每个函数
我有一段 jScrollPane 代码,当顶部箭头位于页面顶部时(因为它无法滚动到更高的位置),它会更改顶部箭头的类;而当底部箭头位于页面底部时,它会更改底部箭头的类(因为它可以不向下滚动):
if (settings.showArrows) {
$upArrow[destY == 0 ? 'addClass' : 'removeClass']('disabled');
$downArrow[destY == maxY ? 'addClass' : 'removeClass']('disabled');
}
我想更改它,以便显示两个箭头(当可以向任一方向滚动时)或禁用两个箭头(当所有内容都可见时)。
谢谢。
I have this piece of code for a jScrollPane that changes the top arrow's class when it's at the top of the page (since it can't scroll any higher) and the bottom arrow's class when it's at the bottom of the page (since it can't scroll any lower):
if (settings.showArrows) {
$upArrow[destY == 0 ? 'addClass' : 'removeClass']('disabled');
$downArrow[destY == maxY ? 'addClass' : 'removeClass']('disabled');
}
I would like to change it so that either both arrows are showing (when scrolling in either direction is possible) or both arrows are disabled (when all content is visible).
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
或者甚至:
Or even: