Сообщение от filosofer
|
как сделать так, что бы последнее число дублировалось.
|
Модифицировать вариант от
Pavel M....
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<!--
<link rel="stylesheet" type="text/css" href="tmp.css" />
-->
<style type="text/css">
</style>
<script type="text/javascript">
$(function(){
$('table td:first-child').each(function (i) {
$(this).html(i+1);
});
$('table tr:last-child td:first-child').text($('table tr').length-1);
});
</script>
</head>
<body>
<table border=1>
<tr><td></td><td>xxx</td></tr>
<tr><td></td><td>xxx</td></tr>
<tr><td></td><td>xxx</td></tr>
<tr><td></td><td>xxx</td></tr>
</table>
</body>
</html>