gpt4 book ai didi

jquery - 如何组合两个 jquery 函数/事件

转载 作者:行者123 更新时间:2023-12-01 04:04:18 24 4
gpt4 key购买 nike

如何组合两个 jQuery 函数/事件?例如,类似:

$(window).load(function()  &  $( window ).resize(function() {
//Code for action
},

最佳答案

您可以使用on()用于同一元素上的多个事件绑定(bind)

第一个参数events:

An object in which the string keys represent one or more space-separated event types and optional namespaces, and the values represent a handler function to be called for the event(s).

$(window).on('load resize', function() {
// Common event handler here
});

您还可以使用命名函数

function handler() {
// Common event handler here
}

$(window).load(handler);
$(window).resize(handler);

关于jquery - 如何组合两个 jquery 函数/事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32494578/

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