我懵了,求大神
<html>
<head>
<script>
window.onload=function()
{
document.getElementById("but").onclick=function()
{
alert("you hurt me!!!");
}
document.write("aaaaaa");
}
document.write("bbbbbbbbbbbbb");
</script>
</head>
<body>
<input id="but" type="button" value="click me" >
<script>
document.write("asssss");
</script>
</body>
</html>
这是我的代码,为啥当b为偶数的时候,都会显示出来,b为奇数的时候,只显示aaaaaa????