我有一个名为 resultGridTable 的表。我有一个要在表的每一行上执行的 jQuery 函数。在函数中,“this”表示一行。
对于第四行,我需要提醒第一列值(第四行)。我有以下代码;但它不起作用。我们怎样才能让它发挥作用?
对于第五行,我需要提醒行中的列数。我们该怎么做?
在第六行的第二列,我有两个按钮(输入类型=“提交”)。我需要提醒第二个按钮的文本/值。(第二个按钮有一个名为“secondButton”的类)我们怎么做呢?
以下是代码::
$('#resultGridTable tr').each(function (i)
{
//"this" means row
//Other operations in the row. Common for all rows
if(i==3)
{
//Specific Operation for fourth row
var columnValue = $(this 'td:nth-child(0)').val();
alert(columnValue);
}
});
阅读: