请问这段代码哪里出错了
<body>
<h3>one()方法执行一次绑定事件</h3>
<div id="bi" style="font-size:1px">我要变大</div>
<input type="button" value="bigger"></input>
<script type="text/javascript">
for(var j=0;j<20;j++)
{
$("button").bind("click", function ()
{
$("#bi").css("font-size", j + "px");
});
}
</script>
</body>