首页javascriptwindowjQuery Event - 如何句柄窗口加载动作事件

jQuery Event - 如何句柄窗口加载动作事件

我们想知道如何句柄窗口加载动作事件。

<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
  src='http://code.jquery.com/jquery-1.8.3.js'></script>
<script type='text/javascript'>//<![CDATA[ 
$(function(){
    jQuery(window).load(function($){
       console.log('test here');
    });
});//]]>  
</script>
</head>
<body>
</body>
</html>