首页 > 代码库 > jquery-table

jquery-table

获取table中选中一行的一个单元格的值

var id = $(‘input:checked‘).val();
alert($(‘input:checked‘).parent().parent().index());
var row=$(‘input:checked‘).parent().parent().index();
var str=document.getElementById("table1").rows[row+1].cells[5].innerText;
alert(str);

 

innerText对火狐失效,改用innerHTML,所有浏览器都支持

本文出自 “东方小阁” 博客,请务必保留此出处http://lailai.blog.51cto.com/3362373/1430286