我只想计算行数,
<button id="add">Add row</button>
<table>
<tbody id="mytbody">
</tbody>
</table>
Number of rows: <span id="counter"></span>
Javascript:
$(function() {
$('#add').bind('click', function() {
$('#mytbody').after('<tr><td>'+ new Date() +'</td></tr>');
var count = $('#mytbody').children().length;
$('#counter').html(count);
});
});
我找到了这个jQuery: count of rows in a table
这不起作用http://jsfiddle.net/H8sBr/
我只是不明白它的工作。帮助?