html九九乘法表:
<!DOCTYPE htm1>
<html>
<head>
<meta charset="UTF-8">
<title>九九乘法表</titlex
</head>
<style>
td{
border: 1px solid ;
</style>
<body
<script>
document .write ("<table> " );
for(var i=1;i<=9;i++){
document .write ("<tr>");
for(var j=1;j<=i;j++){
document .write ("<tdx");document.write (i+"*"+j+"-"+(i*j)+"   ");document .write ("</td>");
document .write ("</tr>");
}document .write ("</table>");
</script>
</body>
</htm1>
网友留言: