gpt4 book ai didi

JQuery 在移动 View 时禁用某个功能;和/或当屏幕宽度等于或小于 769px 时

转载 作者:行者123 更新时间:2023-12-01 00:57:42 25 4
gpt4 key购买 nike

我的 JQuery 上有悬停状态,即这个:

$('.navigation a').hover(
function () {
$(this).next('span').show();
},
function () {
$(this).next('span').hide();
}
);

现在,我希望只要用户的屏幕分辨率为 769 像素或更低,就禁用悬停状态。

最佳答案

我找到了答案。

if ( $(window).width() > 769) {
$('.navigation a').hover(
function () {
$(this).next('span').show();
},
function () {
$(this).next('span').hide();
}
);
}

关于JQuery 在移动 View 时禁用某个功能;和/或当屏幕宽度等于或小于 769px 时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11256416/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com