就像标题所说,我需要一些结合两个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
} );
答案 0 :(得分:3)
简单如下:
function doTheSameThing() {
// Do same thing
}
$( window ).on( 'resize', doTheSameThing);
jQuery( document ).on( 'updated_checkout', doTheSameThing);