j++ 和 ++j i++是先用i的值,再自加;
<script type="text/javascript"> var j = 10; alert(++j);//11 alert(j);//11 </script>