for循环写一个直角三角形for(var j=1;j<10;j++){ //有多少列 for(var i=0;i<j;i++){ //每列有多少* document.write("*") } document.write("<br>")}