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

jquery-table,布布扣,bubuko.com

jquery-table

上一篇:jquery-checkbox的属性选择判断


下一篇:jsp:useBean中type和class的区别