gpt4 book ai didi

javascript - angularjs 从表格颜色中删除行打破样式

转载 作者:太空宇宙 更新时间:2023-11-04 02:45:53 25 4
gpt4 key购买 nike

你好,我尝试从表中删除行,前两行背景为红色,另一行背景为白色。

如果我尝试删除最后一行,它将被删除,但颜色将仅用于第一行(它应该用于第一行和第二行)

下面 plnkr 中的示例:尝试通过在 coulmn University 中单击 x 来删除最后一行:

http://plnkr.co/edit/6td3Ywfeoe502wsQFNGO?p=preview

索引.html :

<!DOCTYPE html>
<html ng-app>
<head>
<title></title>
<script src="script.js" ></script>
<script src="http://code.angularjs.org/1.1.5/angular.min.js" ></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div>
<label>Search:</label>
<input type="search" ng-model="search" placeholder="Enter to Search">
</div>
<div id="table1" ng-controller="table">
<table cellpadding="0" border="0" cellspacing="0" >
<tr id="heading">
<th>Roll NO:</th>
<th>Student Name:</th>
<th>University:</th>
</tr>
<tr class="color2" ng-class="student.color" ng-repeat="student in students | filter:search | filter:new_search">
<td>{{student.Rollno}} <input type="checkbox" ng-model="checked[$index]"> </td>
<td>{{student.Name}}</td>
<td>{{student.Uni}} <button ng-click="remove($index)">x </button></td>
</tr>
</table>
<div >
<label>Rollno:</label>
<input type="number" ng-model="new_rollno"> <br>
<label>Name:</label>
<input type="text" ng-model="new_name"><br>
<label>University:</label>
<input type="text" ng-model="new_uni"><br>
<button ng-click="save()">Save</button>
</div>
<div style="float: right; margin-right: 300px;margin-top: -200px;">

<button ng-click="remove($index)" >Remove</button>
</div>
</div>
</body>
</html>

脚本.js:

// Code goes here

var table = function($scope)
{
$scope.students=[
{Rollno: "1122",Name: "abc",Uni: "res",color:"red"},
{Rollno: "2233",Name: "def",Uni: "tuv",color:"red"},
{Rollno: "23432",Name: "g325325hi",Uni: "wxy"},
{Rollno: "3344",Name: "ghi",Uni: "wxy"}
];
$scope.save=function(){
$scope.students.push({
Rollno: $scope.new_rollno,
Name: $scope.new_name,
Uni: $scope.new_uni
});
$scope.new_rollno="";
$scope.new_name="";
$scope.new_uni=""
};
$scope.checked=[];
$scope.remove=function(index){
alert($scope.checked);
$scope.students.splice(function(record){
return $scope.checked[$index];
},1);
};
};

最佳答案

代码中的主要问题:splice 的第一个参数- 应该是起始索引,但您尝试传递函数。如果使用传递的 index 一切正常

$scope.students.splice(index,1);

在代码片段中,您可以看到即使删除最后一行 - 一切正常

angular.module('app', [])
.controller('tableCtrl', ['$scope',
function($scope) {
$scope.students = [{
Rollno: "1122",
Name: "abc",
Uni: "res",
color: "red"
}, {
Rollno: "2233",
Name: "def",
Uni: "tuv",
color: "red"
}, {
Rollno: "23432",
Name: "g325325hi",
Uni: "wxy"
}, {
Rollno: "3344",
Name: "ghi",
Uni: "wxy"
}];
$scope.save = function() {
$scope.students.push({
Rollno: $scope.new_rollno,
Name: $scope.new_name,
Uni: $scope.new_uni
});
$scope.new_rollno = "";
$scope.new_name = "";
$scope.new_uni = ""
};
$scope.checked = [];
$scope.remove = function(index) {
$scope.students.splice(index, 1);
};
}
])
/* Styles go here */

table {
width: 100%;
}
table,
th,
td {
border: 1px solid black;
}
.color {
background-color: lightgray;
}
.color2 {
background-color: white;
}
#heading {
background-color: black;
color: white;
}
tr:hover {
background-color: darkblue;
color: white;
font-weight: bold;
}
#images img {
margin-top: 10px;
}
#img1 {
width: 33.4%;
}
#img2 {
width: 66%;
height: 255px;
}
#table1 {
margin-top: 10px;
}
label {
display: block;
margin-bottom: 5px;
margin-top: 5px;
}
button {
margin-top: 5px;
padding: 5px;
}
.red {
background-color: red;
}
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.7/angular.js"></script>
<div ng-app="app" ng-controller="tableCtrl">
<div>
<label>Search:</label>
<input type="search" ng-model="search" placeholder="Enter to Search">
</div>
<div id="table1">
<table cellpadding="0" border="0" cellspacing="0">
<tr id="heading">
<th>Roll NO:</th>
<th>Student Name:</th>
<th>University:</th>
</tr>
<tr class="color2" ng-class="student.color" ng-repeat="student in students | filter:search | filter:new_search">
<td>{{student.Rollno}}
<input type="checkbox" ng-model="checked[$index]">
</td>
<td>{{student.Name}}</td>
<td>{{student.Uni}}
<button ng-click="remove($index)">x</button>
</td>
</tr>
</table>
<div>
<label>Rollno:</label>
<input type="number" ng-model="new_rollno">
<br>
<label>Name:</label>
<input type="text" ng-model="new_name">
<br>
<label>University:</label>
<input type="text" ng-model="new_uni">
<br>
<button ng-click="save()">Save</button>
</div>
<div style="float: right; margin-right: 300px;margin-top: -200px;">


</div>
</div>
</div>

关于javascript - angularjs 从表格颜色中删除行打破样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33855264/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com