利用 jQuery Clone 复制行(5)

来源:未知 责任编辑:责任编辑 发表时间:2013-12-18 11:35 点击:

               $(this).attr("onclick", ""); 
               $(this).unbind("click"); 
               $(this).attr("onclick", "").click(func); 
             } 
         } 
      }); 
    } 
 
    this._countForRowsGroup++; 
    this._keyForRow++; 
    
  }; 
 
 
  this.copyRow = function(groupIdx) { 
    this.addRow(groupIdx, true); 
  }; 
 
  this.deleteRow = function(groupIdx) { 
 
    if (this._countForRowsGroup == -1) { 
      this._countForRowsGroup = ($("#" + this.tableId + " tr[id]").length - 1)/this.rowGroupNumber; 
      this._keyForRow =  parseInt($("#" + this.tableId + " tr[id]:not(#row_add):last").attr("id").split("_")[1]) + 1; 
    } 
 
    var allRows = $("#" + this.tableId + " tr[id]"); 
    var miniRowsCount = this.rowGroupNumber + 1; 
    var tbl = $("#" + this.tableId); 
 
    if (allRows.length == miniRowsCount) { 
      tbl.find("input:text").each(function() { $(this).val(""); }); 
      tbl.find("textarea").each(function() { $(this).val(""); }); 
      tbl.find("input:hidden").each(function() { $(this).val(""); }); 
      tbl.find("input:radio").each(function() { $(this).attr("checked", ""); }); 
      tbl.find("input:checkbox").each(function() { $(this).attr("checked", ""); }); 
      tbl.find("select").each(function() { document.getElementById($(this).attr("id")).selectedIndex = 0; }); 
      tbl.find(".fg-common-field-errored").each(function() { 
        $(this).removeClass("fg-common-field-errored"); 
      }); 
      return; 
    } 
发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
用户名: 验证码:点击我更换图片
最新评论 更多>>

推荐热点

  • Gb2312转utf-8编码的方法(vbs+js)
  • 如何使用Ajax技术开发Web应用程序(1)
  • js跳转路径问题
  • JavaScript模仿桌面窗口
  • 用js检测两个线段是否相交
  • 运用JavaScript构建你的第一个Metro式应用程序(on Windows
  • 我知道的JavaScript -- 设计模式(桥接)应用之 – 验证器
  • 我是如何去了解jquery的(六),案例之幻灯片轮换
  • Jquery封装幻灯片效果
网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
Copyright © 2008-2015 计算机技术学习交流网. 版权所有

豫ICP备11007008号-1