gpt4 book ai didi

javascript - 如何使用 jquery resize run 函数一次?

转载 作者:行者123 更新时间:2023-12-03 05:00:58 25 4
gpt4 key购买 nike

我想在调整窗口大小时使用 run 2 函数 jquery。但我只想做一次。代码可以是这样的:

jQuery(document).ready(function () {
var screenwidth=jQuery(window).width();
if(screenwidth>991){
dofunction1();
}
else{
dofunction2();
}
});

我希望当 screenwidth>991 时执行 dofunction1() 1 次,当 screenwidth<=991 时执行 dofunction2() 1 次。希望您的帮助!!

最佳答案

您可以使用.one()绑定(bind)resize事件

Attach a handler to an event for the elements. The handler is executed at most once per element per event type.

$(window).one('resize', function () {
var screenwidth = jQuery(window).width();
if (screenwidth > 991) {
dofunction1();
} else {
dofunction2();
}
});

关于javascript - 如何使用 jquery resize run 函数一次?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42227992/

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