Text and appearance bindings
Knockout.js provides you with a huge number of useful HTML data bindings to control the text and its appearance. In Chapter 1, Introduction to Knockout.js, we discussed what bindings are and how we can use them. In this section, we take a brief look at the most common ones:
- The
text
binding - The
html
binding - The
css
binding - The
style
binding - The
attr
binding - The
visible
binding
The text binding
The text
binding is one of the most useful bindings. It allows us to bind text
of an element (for example, span
) to a property of the ViewModel. Let's create an example in which a person has a single firstName
property (PersonalPage-Binding-Text1.html
).
The Model will be as follows:
var person = { firstName: "John" };
The ViewModel will ...
Get Getting Started with Knockout.js for .NET Developers now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.