<!doctype html>
<html lang="en">
<head>
<meta charset="GB2312">
<title>test</title>
</head>
<body onload="aa()">
<script>
function aa(){
console.log("111111");
}
console.log((function aa(){
return 1;
})());
</script> 
</body>
</html>这应该不是body中onload的问题,你看看这个例子,如果加了console.log的那一句,在ie9的其他兼容模式下,就不会执行onload了,原因不知道检查一下是不是有其他的额问题影响的。