Skip to content

Instantly share code, notes, and snippets.

@hoosin
Created November 6, 2014 06:26
Show Gist options
  • Save hoosin/8fc212955161758f4175 to your computer and use it in GitHub Desktop.
Save hoosin/8fc212955161758f4175 to your computer and use it in GitHub Desktop.
圣诞树js版本
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>圣诞树</title>
<style type="text/css">
#innter{text-align: center;}
</style>
</head>
<body>
<div id="innter"></div>
<script>
var html='<table>'
for (var i = 0; i < 40; i++) {
html+='<tr><td align=center>';
var str='';
for (j = 1; j <= i; j++) {
str = str + "*";
}
html+=str;
html+='</td></tr>'
};
html+='</table>'
document.getElementById('innter').innerHTML=html;
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment