jquery生成一段九九乘法表的代码
时间: 2023-07-09 10:05:17 浏览: 66
以下是使用jQuery生成九九乘法表的代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>九九乘法表</title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
</head>
<body>
<table border="1">
<thead>
<tr>
<th></th>
<th>1</th>
<th>2</th>
<th>3</th>
<th>4</th>
<th>5</th>
<th>6</th>
<th>7</th>
<th>8</th>
<th>9</th>
</tr>
</thead>
<tbody>
<?php for($i=1;$i<10;$i++): ?>
<tr>
<th><?php echo $i; ?></th>
<?php for($j=1;$j<=$i;$j++): ?>
<td><?php echo $j.'x'.$i.'='.$i*$j; ?></td>
<?php endfor; ?>
<?php for($j=$i+1;$j<=9;$j++): ?>
<td></td>
<?php endfor; ?>
</tr>
<?php endfor; ?>
</tbody>
</table>
</body>
</html>
```
注意,这里用到了PHP语言来生成HTML,如果你不想用PHP,可以手动写出HTML表格。
阅读全文