ng-bind-html对html标签不起作用

时间:2015-07-30 06:40:25

标签: javascript angularjs html5

我已经完成了this topic

有效!从这个

data: {
           startDate:$('#reservation').val().slice(0,10)+' 00:00:00',
           endDate :$('#reservation').val().slice(12,22)+' 23:59:59'
                    },

到此<p>9+555</p>\r\n

它仍然留下HTML标记。

如何使这些标签作为HTML而不是文本。 非常感谢

1 个答案:

答案 0 :(得分:0)

你不应该使用&amp; lt和&amp; gt你应该直接写<p>

angular.module('bindHtmlExample', ['ngSanitize'])
    .controller('ExampleController', ['$scope', function($scope) {
        $scope.myHTML = 'I am an <code>HTML</code>string with ' +
                        '<a href="#">links!</a> and other <em>stuff</em>';
    }]);

这是一个插件,显示您的字符串与正确的html格式http://plnkr.co/edit/RZmuzTilvBkU3oGUre7J之间的差异