<html>
<head>
<title>test</title>
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script type="text/javascript">
$(function(){
$("#table_list tr:gt(0)").click(function(){
$(this).find(":radio").prop("checked",true);
});
});
</script>
</head>
<body>
<table id="table_list">
<tr>
<th></th>
<th>用户名</th>
<th>创建时间</th>
</tr>
<tr>
<td><input
type="radio" value="1" ></td>
<td>User1</td>
<td>2017-01-06</td>
</tr>
<tr>
<td><input
type="radio" value="2" ></td>
<td>User2</td>
<td>2017-01-06</td>
</tr>
<tr>
<td><input type="radio" value="3" ></td>
<td>User3</td>
<td>2017-01-06</td>
</tr>
</table>
</body>
</html>