angularJS删除表格中的整列方法
<tdcols={{cols}}><td>设置了cols这个变量,同一列中的td的cols变量值相同。如何获取通过获取相同cols值得td,如何实现删除整列呢?急求方法,...
<td cols={{cols}}><td>
设置了cols这个变量,同一列中的td的cols变量值相同。如何获取通过获取相同cols值得td,如何实现删除整列呢?
急求方法,附代码,谢谢。 展开
设置了cols这个变量,同一列中的td的cols变量值相同。如何获取通过获取相同cols值得td,如何实现删除整列呢?
急求方法,附代码,谢谢。 展开
展开全部
cols是啥?你定义的directive?我记得表格没有这个属性,iframe才有。
更多追问追答
追问
这是angularJS里边的。
追答
你是改别人代码?有类似.directive('cols', function() {})的内容么?贴出来看看。
算了,写了一段,百度还有字数限制,只能这么贴了
<!doctype html><html><head><meta charset="utf-8"><title>test</title><script src="angular.min.js"></script><script>var myApp = angular.module("myApp", []); myApp.directive('hideTd',function(){ return { restrict: 'A', scope: { id:'@hideTd'}, link:function(scope, elm, attr){ if(scope.id==attr.cols) elm.remove(); } }; }); myApp.controller("testCtrl", function($scope){ $scope.one = 1; $scope.two = 2; $scope.hideThis = 1; });</script></head><body><div ng-app="myApp"><div ng-controller="testCtrl"><table width="100%" border="2" cellspacing="5" cellpadding="5"><tr><td cols="{{one}}" hide-td="{{hideThis}}">1</td><td cols="{{two}}" hide-td="{{hideThis}}">2</td></tr><tr><td cols="{{one}}" hide-td="{{hideThis}}">3</td><td cols="{{two}" hide-td="{{hideThis}}">4</td></tr><tr><td cols="{{one}}" hide-td="{{hideThis}}">5</td><td cols="{{two}" hide-td="{{hideThis}}">6</td></tr></table></div></div></body></html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用选择器就行?jquery??
追问
不是JQ,是angularJS框架
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询