寻呼机无法正常工作

时间:2014-06-16 05:18:53

标签: jquery

当我尝试删除选中的行时,它会被删除,但寻呼机无法正常工作。寻呼机总是显示1/1甚至我hava数据直到1/4。当我删除任意数量的行时,它在删除行后总是显示1/1。

我的代码是  功能块用户(blockuser,原因) {

$。AJAX({

    url : "blockUser?blockUser="+blockuser+"&reason="+reason,
    contentType : 'application/json',
    type : 'POST',
    datatype : 'json',
    async : true,
   success:function()
   {

       $("input[type='checkbox']:checked").each(function () {

           var j=$(this).closest('tr').find('.email').text();
           if(j!="E-mail")
              { 
                $(this).parent().parent().remove();
             }   

       });


       $('.tablesorter').trigger('update');
       $('.header').trigger('click');

   }

}); 

}

这是html                                        公司名          用户名          电子邮件          视图                    

     <tbody style="background-color:white;text-align:center">

     <s:iterator value="dataList">
     <tr class="tablerow">
     <td class="companyname"><s:property value="companyName"></s:property></td>
     <td class="username"><s:property value="userName"></s:property></td>
     <td class="email"><s:property value="companyMail"></s:property></td>
     <td><a href="<s:url action="/pages/viewUser"><s:param name="companyName"><s:property value="companyName"></s:property></s:param></s:url>">view</a></td>

     <td><input type="checkbox" name="abc" class="specific1" id="specific1"/></td>
     </tr>
     </s:iterator>

     </tbody>
     </table>

     <br>
     <div id="pager" class="pager" style="margin-left:250px;">

     <input type="button" class="first" style="height:25px; width:30px;" value="|<"/>
     <input type="button" class="prev" style="height:25px; width:30px;" value="<<"/>
     <input type="text" class="pagedisplay" size="4"/>

      <input type="button" class="next"  style="height:25px; width:30px;" value=">>"/>
       <input type="button" class="last" style="height:25px; width:30px;" value=">|"/>

    <select class="pagesize" style="">
        <option selected="selected"  value="3">3</option>
        <option value="5">5</option>
        <option value="8">8</option>
        <option  value="10">10</option>
    </select>
    </div>

0 个答案:

没有答案