除了其他触发器外,如何触发onload?

How to trigger onload in addition to other triggers?

如何在页面加载时触发此事件:

$(window).on('scroll resize', function() {
});

到目前为止我试过这个:

$(window).on('ready scroll resize', function() {
});

还有这个:

$(window).on('load scroll resize', function() {
});

看起来像这么简单的事情,它应该有用吗?

.on( events [, selector ] [, data ] )

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).