我正在做敲除绑定以将值插入表中。如果表中的行数为 0,那么我必须显示一条警报消息。但为此,我需要计算显示数据的行数。
我的视图代码如下:
<table class="table table-hover table-bordered datagrid" style="width: 355px;" id="remodellingTable">
<thead>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Address</th>
<th>City</th>
<th>State</th>
</tr>
</thead>
<tbody data-bind="foreach:items">
<tr>
<td data-bind="text:fname" id="tdfname"></td>
<td data-bind="text:lname"></td>
<td data-bind="text:addr"></td>
<td data-bind="text:city"></td>
<td data-bind="text:state"></td>
</tr>
</tbody>
</table>
<button type="button" class="btn" id="nexttarget"> Next <i class="icon-arrow-right"></i></button>
我用于此检查的 jquery 代码如下:
$('#nexttarget').live('click', function ()
{
var rowcount = ('#remodellingTable > tbody > tr').length;
if (rowcount > 0)
{
$('#authorize').hide();
$('#target').hide();
$('#sideone').show();
}
else
{
alert("There are no targets selected");
}
}