gpt4 book ai didi

javascript - 在此 javascript-jquery 函数中添加 resizeWindow

转载 作者:行者123 更新时间:2023-12-03 12:14:26 26 4
gpt4 key购买 nike

我需要添加在调整窗口大小时更改返回值的功能。我不知道该怎么做。

  $scope.widthLessParameter = function(parametro){
if(!isNaN(parametro)){
return $(window).width() - parametro + 'px';
}else{
return $(window).width() - $(parametro).width() + 'px';
}
}

非常感谢!

最佳答案

您可以监听调整大小事件的变化。

angular.element($window).bind('resize', function () {
console.log('window resized');
});

关于javascript - 在此 javascript-jquery 函数中添加 resizeWindow,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24791813/

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