需要帮助组合jQuery函数

时间:2018-04-30 19:23:05

标签: javascript jquery woocommerce

就像标题所说,我需要一些结合两个jQuery函数的帮助。这似乎很简单,但我无法弄清楚。他们每个人都做同样的事情。如果有帮助,第二个函数的'updated_checkout'是一个WooCommerce回调。

$( window ).on( 'resize', function () {
     // Do same thing as other function
});

jQuery( document ).on( 'updated_checkout', function () {
     // Do same thing as other function
} );

1 个答案:

答案 0 :(得分:3)

简单如下:

function doTheSameThing() {
    // Do same thing
}

$( window ).on( 'resize', doTheSameThing);

jQuery( document ).on( 'updated_checkout', doTheSameThing);