zoukankan      html  css  js  c++  java
  • jQuery如何动态删除TR,input按钮删除本行记录,checkbox全选反选

    checkbox 全选反选

     1:  var i = 1;
     2:          function CheckAllTeacher() {
     3:              if (i % 2 == 1) {
     4:                  i++;
     5:                  $("#sendContent input[type='checkbox']").attr("checked", true);
     6:              } else {
     7:                  i++;
     8:                  $("#sendContent input[type='checkbox']").attr("checked", false);
     9:              }
    10:   
    11:          }
    12:   

    input按钮删除本行记录(Jquery动态删除tr)

    1:  <a href='javascript:deleteSmg("<%#(Eval("Templateid").ToString())%>")' title="点击删除"><img border=0"" src="../skin/images/de.png" height="20" width="20"/></a>
    2:  
     1:  function deleteSmg(id) {
     2:              if (confirm("是否真的删除?")) {
     3:                  $.ajax({
     4:                      type: "POST",
     5:                      url: "DeleteSmg.ashx",
     6:                      data: "smgId=" + id + "&t="+Math.random(),
     7:                      success: function (msg) {
     8:                          $("#content" + id).closest("tr").remove();
     9:                      }
    10:                  });
    11:   
    12:              } else {
    13:                  alert("不删除");
    14:              }
    15:          }
    16:   
  • 相关阅读:
    android 项目学习随笔十五(ShareSDK开放平台)
    android 项目学习随笔十四(WebView)
    android 项目学习随笔十三(ListView实现ITEM点击事件,将已读状态持久化到本地)
    android 项目学习随笔十二(ListView加脚布局)
    android 项目学习随笔十一(ListView下拉刷新提示)
    android 项目学习随笔十(自定义ProgressBar)
    android 项目学习随笔九(ListView加头布局)
    android 项目学习随笔八(xUtils的BitmapUtils模块)
    android 项目学习随笔七(ViewPagerIndicator与ViewPager)
    android 项目学习随笔六(网络缓存)
  • 原文地址:https://www.cnblogs.com/joeylee/p/3028166.html
Copyright © 2011-2022 走看看