This code displays the non-breaking space escape sequence instead of the actual spaces:
<html>
<head>
<script src="../js/jquery.min.js"></script>
<script src="../js/knockout-2.2.1.js"></script>
<script>
$(document).ready(function() {
var modelType = function() {
this.A = ko.observable('a b c');
};
var model = new modelType();
ko.applyBindings(model);
});
</script>
</head>
<body>
<p data-bind="text: A"></p>
</body>
</html>
It displays the following:
a b c
instead of
a b c
How do I prevent this behavior?
You should use html
binding instead of text
:
<p data-bind="html: A"></p>
You could use the html binding, http://knockoutjs.com/documentation/html-binding.html:
<p data-bind="html: A"></p>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With