Javascript 函数适用于两者,而不是分别适用于每个函数

发布于 2024-12-13 12:17:47 字数 356 浏览 1 评论 0原文

我有一段 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

平定天下 2024-12-20 12:17:47
if (settings.showArrows) {
$upArrow[destY == 0 && destY == maxY ? 'addClass' : 'removeClass']('disabled');
$downArrow[destY == 0 && destY == maxY ? 'addClass' : 'removeClass']('disabled');
}

或者甚至:

if (settings.showArrows) {
$upArrow[maxY == 0 ? 'addClass' : 'removeClass']('disabled');
$downArrow[maxY == 0 ? 'addClass' : 'removeClass']('disabled');
}
if (settings.showArrows) {
$upArrow[destY == 0 && destY == maxY ? 'addClass' : 'removeClass']('disabled');
$downArrow[destY == 0 && destY == maxY ? 'addClass' : 'removeClass']('disabled');
}

Or even:

if (settings.showArrows) {
$upArrow[maxY == 0 ? 'addClass' : 'removeClass']('disabled');
$downArrow[maxY == 0 ? 'addClass' : 'removeClass']('disabled');
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文