我能够使用我的javascript函数轻松地从特定单元格中获取字符串(见下文)但是现在数据库正在由javascript填充而不是html中的测试信息我不能再这样做了。是否有不同的方式来引用填充了javascript而不是html的表格的单个单元格?
JS填充表格:
var unmatched =0;
$(document).ready(function(element){
$('#records').hide();
$('#unmatched').hide();
$('#fileForm').hide();
$('#totalUnmatched').append('<a style="color:#ffffff;">'+unmatched+'</a>');
$('#matching').hide();
});
JS从单个单元格中获取字符串(仅适用于html版本):
$(document).ready(function(){
$('#scoutRecordTable tr').click(function(){
var rowIndex = $(this).index();
var Row = document.getElementById("scoutRecordTable");
var string = document.getElementById("scoutRecordTable").rows[rowIndex].cells[0].innerHTML;
string += ' ';
string += document.getElementById("scoutRecordTable").rows[rowIndex].cells[1].innerHTML;
$("span").html(string);
});
});