0

私はこのコードを持っています

  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);
            });
        }
    }
});

だから...この要素をクリックするとテキストが表示されます...しかし、私は...要素をクリックせずにコンテンツを取得します。bind イベントを削除して要素テキストを取得{{post.description}}すると、データをバインドする前の " " のみが取得されます....

4

0 に答える 0