JQuery动态操作表格

Posted Yu2

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JQuery动态操作表格相关的知识,希望对你有一定的参考价值。

  新人,小白一枚,刚刚参加工作,所以会在这里记录一些遇到的问题。

  最近要做的东西,是对一个表格动态的添加行,删除行,并且对表格中内容进行非空验证。

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<script src="scripts/jquery-1.10.2.js"></script>
<script type="text/javascript">
$(function () {
//获取表格的行数
var tabRowLen = $("table tbody tr").length;
//点击add按钮时,
$("#add").on("click", function () {
//获取表格的行数
tabRowLen = $("table tbody tr").length;
var index = tabRowLen - 1;
//表格行数为0时,或者表格不存在空值时
if (IsNull(index) || tabRowLen == 0) {
//添加一行
$("table tbody").append("<tr>" +
"<td><input type=‘text‘ class=‘Name‘/><div id=‘dName" + tabRowLen + "‘></div></td>" +
"<td><input type=‘text‘ class=‘Age‘/><div id=‘dAge" + tabRowLen + "‘></div></td>" +
"<td><input type=‘button‘ class=‘add‘ value=‘delete ‘ /></td></tr>");
//删除一行
$(".add").on("click", function () {
$(this).parents("tr").remove();
});
}
//keyup事件
$("table input").on("keyup", function () {
//验证是否有空值
IsNull(index);
});
});

function IsNull(trIndex) {
var result = true;
debugger;
//遍历表格的input
$("table tbody input").each(function (trIndex) {
//判断是否存在空值
if ($("table tbody input")[trIndex].value == "") {
//提示空值
result = false;
$(this).next().html("required");
}
//不为空
else {
//清空提示信息
$(this).next().html("");
}
});
return result;
};
});
</script>
</head>
<body>
<table>
<thead>
<tr>
<th>Name</th>
<th>Age</th>
<th><input type="button" id="add" value="addRow " /></th>
</tr>
</thead>
<tbody></tbody>
</table>
</body>
</html>

 

以上是关于JQuery动态操作表格的主要内容,如果未能解决你的问题,请参考以下文章

jQuery_动态表格(简单易懂)

JQuery动态操作表格

如何用jquery实现动态删除表格行

jquery 实践操作:div 动态嵌套页面

jquery表格行进行编辑 如何获取当前的行数据

jquery动态创建表格