日期:2014-05-16 浏览次数:20437 次
<div id="dvABC">
<table class="l_height_30 gridcontent" width="100%" border="0" cellspacing="0" cellpadding="0">
<thead>
<tr>
<td width="50" class="bg_thead center">序号</td>
<td class="bg_thead pl_10">内容</td>
</tr>
</thead>
<tbody>
<tr>
<td width="50" class="bg_thead center"><input class="radio_box" name="infolist" type="radio" value="8123" ></td>
<td class="bg_thead pl_10">aaaaa</td>
</tr>
<tr class="odd selected">
<td width="50" class="bg_thead center"><input class="radio_box" name="infolist" type="radio" value="2659" ></td>
<td class="bg_thead pl_10">bbbbb</td>
</tr>
<tr>
<td width="50" class="bg_thead center"><input class="radio_box" name="infolist" type="radio" value="3472" ></td>
<td class="bg_thead pl_10">ccccc</td>
</tr>
</tbody>
</table>
</div>
<input class="bt_save mr_20" type="button" value="SAVE" />
$("#dvABC tbody tr").click(function () {
$(this).find(":radio").prop("checked", true);
});
$(".bt_save").click(function () {
var $radio= $("#dvABC input:radio:checked");
alert($radio.val());
alert($radio.parent("td").next("td").text());
});
<script type='text/javascript'>
$(function(){
$("#dvABC table tr").click(function(e){
$(this).find("td>input[type='radio']").attr('checked','checked');
});
$(".bt_save").click(function(e)