我已经完成了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而不是文本。 非常感谢
答案 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之间的差异