SOURCE

console 命令行工具 X clear

                    
>
console
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
		<script type="text/javascript">
		
		for(var i=1;i<10;i++){
		    for(var j=1;j<=i;j++){
                document.write("<span>"+j+"*"+i+"="+i*j+"</span>");
            }
            document.write("<br />");
		}
		</script>
        <style type="text/css">
            span{
                display:inline-block;
                width:80px;
            }
        </style>
    </head>
    <body>
	
    </body>
</html>