-1

我正在做敲除绑定以将值插入表中。如果表中的行数为 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");
    }

}
4

2 回答 2

4

您忘记调用 jQuery,使用$

var rowcount = $('#remodellingTable > tbody > tr').length;

http://jsfiddle.net/ENQrX/

如果您不调用 jQuery,那么您只是在评估 string 的长度'#remodellingTable > tbody > tr',这显然是无关紧要的。

于 2013-01-17T06:50:12.330 回答
1

用这个

var rowcount = $('#remodellingTable > tbody > tr').length;

代替 var rowcount = ('#remodellingTable > tbody > tr').length;

于 2013-01-17T06:56:11.527 回答