我有这个代码
wall.directive('showMore2', function() {
return {
restrict: 'A',
controller: function($scope, $rootScope,$http) {
},
link: function (scope, element, attrs) {
element.bind("click", function(event) {
text = $(element).text();
alert(text);
});
}
}
});
所以...当我点击这个元素时,我得到了文字......
但我想......没有点击元素来获取内容。当我删除绑定事件并获取元素文本时...我只得到“{{post.description}}
”,这是在绑定数据之前....