10,611
社区成员




<table id="items">
<tr>
<td>1</td><td>think java</td><td>100.89</td>
</tr>
<tr>
<td>2</td><td>spring action</td><td>50.00</td>
</tr>
</table>
<script>
jQuery(function($){
$('#items').find('tr').click(function(e){
console.log($(this).html());
});
});
</script>