我的JQuery上有悬停状态 这样:
$('.navigation a').hover(
function () {
$(this).next('span').show();
},
function () {
$(this).next('span').hide();
}
);
现在我希望在用户的屏幕分辨率为769px或更低时禁用悬停状态。
答案 0 :(得分:6)
我找到了答案。
if ( $(window).width() > 769) {
$('.navigation a').hover(
function () {
$(this).next('span').show();
},
function () {
$(this).next('span').hide();
}
);
}