Home Web Front-end JS Tutorial How Text and Appearance Bindings work in KnockoutJs

How Text and Appearance Bindings work in KnockoutJs

Nov 14, 2024 pm 01:05 PM

Como funcionam Bindings de Texto e Aparência no KnockoutJs

This content is basically a translation of the original materials. The intention is to learn about KnockoutJs for Magento 2 and create content in Portuguese about KnockouJs.

Documentation

  • The data-bind syntax
  • Binding context
  • The "visible" and "hidden" bindings
  • The "text" binding
  • The "html" binding
  • The "class" and "css" bindings
  • The "style" binding
  • The "attr" binding

Bindings

In KnockoutJs, bindings are the way to connect the logic of the ViewModel (the data and business logic) with the View (HTML). In short, it is through bindings that the user interface automatically reflects changes in your data, without the need to directly manipulate the DOM.

Bindings in KnockoutJs work through the data-bind attribute on HTML elements. This attribute is where you specify the binding you want to use and the associated values.

Controlling Text and Appearance

Visible

The binding visible is used to control the visibility of HTML elements based on the value of an observable in its ViewModel. It allows you to show or hide elements based on a specific condition defined in your ViewModel.

<div>
  <p data-bind="visible: isContentVisible">Este parágrafo está visível se isContentVisible for true.</p>
</div>
Copy after login
Copy after login
Copy after login

When the condition is a value similar to false (false, 0, null or undefined), the visible binding sets the style to none, causing it to be hidden. This takes priority over any display style you can set using CSS.

Hidden

binding hidden is used to hide HTML elements based on the value of an observable from your ViewModel. Unlike the *visible* binding, which controls the visibility of elements, the *hidden* binding hides UI elements when the specified condition is met.

<div>
  <p data-bind="hidden: isContentHidden">Este parágrafo está oculto se isContentHidden for true.</p>
</div>
Copy after login
Copy after login
Copy after login

Text

The binding text is used to update the content of HTML elements with the value of an observable from its ViewModel. It allows the text of an observable to be inserted directly into the HTML element, ensuring that any change in the value of the observable is automatically reflected in the displayed text.

<div>
  <p data-bind="text: message">Este parágrafo exibirá o conteúdo do observable 'message'.</p>
    <p data-bind="text: 'Total: $' + totalAmount() + ' USD'">Este parágrafo exibirá o total formatado com base no valor do observable 'totalAmount'.</p>
    <p data-bind="text: 'Olá, ' + userName()">Este parágrafo saudará o usuário com base no valor do observable 'userName'.</p>
</div>
Copy after login
Copy after login

If this parameter is an observable value, the binding will update the element's text whenever the value changes. If the parameter is not observable, it will set the element text only once and will not update it again later.

If the value provided is something other than a number or a string, the displayed text will be equivalent to yourParameter.toString().

Because this binding sets its text value using a text node, it is safe to set any string value without risking HTML or script injection.

HTML

binding html is used to insert dynamic HTML content into your UI elements. It allows the content of an element to be updated with the HTML generated from an observable or an expression from its ViewModel.

<div>
  <p data-bind="visible: isContentVisible">Este parágrafo está visível se isContentVisible for true.</p>
</div>
Copy after login
Copy after login
Copy after login

KnockoutJs clears the previous content and then sets the element content to the parameter value using jQuery's html function or parsing the string into HTML nodes and attaching each node as a child of the element, if jQuery is not available.

If this parameter is an observable, the binding will update the element's content whenever the value changes. If the parameter is not observable, it will set the element's content only once and will not update it again later.

If the value provided is something other than a number or a string, the text displayed will be equivalent to yourParameter.toString().

Class

The binding class is used to control CSS classes applied to HTML elements based on the value of an observable or an expression of its ViewModel. This allows you to dynamically change an element's CSS classes based on different conditions or states of your application. A class is not a legal identifier name, the correct way to assign a class to an HTML element is to enclose the identifier name in quotation marks so that it becomes a literal string.

<div>
  <p data-bind="hidden: isContentHidden">Este parágrafo está oculto se isContentHidden for true.</p>
</div>
Copy after login
Copy after login
Copy after login

The parameter value must be a string that corresponds to the CSS class(es) that you would like to add to the element. If the parameter references an observable, the binding updates the classes whenever the value changes, removing any previously added classes and adding the new value's class or classes.

CSS

binding css is used to dynamically apply CSS styles to HTML elements based on the value of an observable or an expression of its ViewModel. This allows you to change an element's visual styles based on different conditions or states of your application. You can define multiple CSS classes based on the same condition by enclosing the names in quotation marks.

<div>
  <p data-bind="text: message">Este parágrafo exibirá o conteúdo do observable 'message'.</p>
    <p data-bind="text: 'Total: $' + totalAmount() + ' USD'">Este parágrafo exibirá o total formatado com base no valor do observable 'totalAmount'.</p>
    <p data-bind="text: 'Olá, ' + userName()">Este parágrafo saudará o usuário com base no valor do observable 'userName'.</p>
</div>
Copy after login
Copy after login

A JavaScript object must be passed in which the property names are your CSS classes and their values ​​evaluate to true or false depending on whether the class should be applied at the time.

If the parameter references an observable value, the binding will add or remove the CSS class whenever the observable changes. If the parameter does not reference an observable, it will add or remove the class only once and will not do so again later.

style

The binding style is used to apply inline CSS styles to HTML elements based on the value of an observable or an expression of its ViewModel. This allows you to change an element's visual styles directly inline, based on different conditions or states of your application.

<div>
  <p data-bind="visible: isContentVisible">Este parágrafo está visível se isContentVisible for true.</p>
</div>
Copy after login
Copy after login
Copy after login

A JavaScript object must be passed in which the property names correspond to the style names and the values ​​correspond to the values ​​of the styles you want to apply.

If the parameter references an observable, the binding will update the styles whenever the observable changes. If the parameter does not reference an observable, it will only set the styles once and not update them later.

If you want to apply a style whose name is not a legal JavaScript identifier (because it contains a hyphen or something like that), you can enclose it in quotation marks or use the name with the camelCase style.

  • { 'font-weight': someValue }
  • { fontWeight: someValue }

If you apply a simple numeric value to a style that requires a unit, KnockoutJs will append px to the value before setting the style.

Attr

The binding attr is used to set or update HTML attributes on elements based on the value of an observable or a ViewModel expression. This allows you to change the attributes of HTML elements dynamically, based on different conditions or states of your application.

<div>
  <p data-bind="hidden: isContentHidden">Este parágrafo está oculto se isContentHidden for true.</p>
</div>
Copy after login
Copy after login
Copy after login

A JavaScript object must be passed in which the property names correspond to the attribute names and the values ​​correspond to the values ​​of the attributes you want to apply.

If the parameter references an observable, the binding will update the attribute whenever the observable changes. If the parameter does not reference an observable, it only sets the attribute once and does not update it later.

The above is the detailed content of How Text and Appearance Bindings work in KnockoutJs. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1664
14
PHP Tutorial
1266
29
C# Tutorial
1239
24
Demystifying JavaScript: What It Does and Why It Matters Demystifying JavaScript: What It Does and Why It Matters Apr 09, 2025 am 12:07 AM

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.

The Evolution of JavaScript: Current Trends and Future Prospects The Evolution of JavaScript: Current Trends and Future Prospects Apr 10, 2025 am 09:33 AM

The latest trends in JavaScript include the rise of TypeScript, the popularity of modern frameworks and libraries, and the application of WebAssembly. Future prospects cover more powerful type systems, the development of server-side JavaScript, the expansion of artificial intelligence and machine learning, and the potential of IoT and edge computing.

JavaScript Engines: Comparing Implementations JavaScript Engines: Comparing Implementations Apr 13, 2025 am 12:05 AM

Different JavaScript engines have different effects when parsing and executing JavaScript code, because the implementation principles and optimization strategies of each engine differ. 1. Lexical analysis: convert source code into lexical unit. 2. Grammar analysis: Generate an abstract syntax tree. 3. Optimization and compilation: Generate machine code through the JIT compiler. 4. Execute: Run the machine code. V8 engine optimizes through instant compilation and hidden class, SpiderMonkey uses a type inference system, resulting in different performance performance on the same code.

Python vs. JavaScript: The Learning Curve and Ease of Use Python vs. JavaScript: The Learning Curve and Ease of Use Apr 16, 2025 am 12:12 AM

Python is more suitable for beginners, with a smooth learning curve and concise syntax; JavaScript is suitable for front-end development, with a steep learning curve and flexible syntax. 1. Python syntax is intuitive and suitable for data science and back-end development. 2. JavaScript is flexible and widely used in front-end and server-side programming.

JavaScript: Exploring the Versatility of a Web Language JavaScript: Exploring the Versatility of a Web Language Apr 11, 2025 am 12:01 AM

JavaScript is the core language of modern web development and is widely used for its diversity and flexibility. 1) Front-end development: build dynamic web pages and single-page applications through DOM operations and modern frameworks (such as React, Vue.js, Angular). 2) Server-side development: Node.js uses a non-blocking I/O model to handle high concurrency and real-time applications. 3) Mobile and desktop application development: cross-platform development is realized through ReactNative and Electron to improve development efficiency.

How to Build a Multi-Tenant SaaS Application with Next.js (Frontend Integration) How to Build a Multi-Tenant SaaS Application with Next.js (Frontend Integration) Apr 11, 2025 am 08:22 AM

This article demonstrates frontend integration with a backend secured by Permit, building a functional EdTech SaaS application using Next.js. The frontend fetches user permissions to control UI visibility and ensures API requests adhere to role-base

Building a Multi-Tenant SaaS Application with Next.js (Backend Integration) Building a Multi-Tenant SaaS Application with Next.js (Backend Integration) Apr 11, 2025 am 08:23 AM

I built a functional multi-tenant SaaS application (an EdTech app) with your everyday tech tool and you can do the same. First, what’s a multi-tenant SaaS application? Multi-tenant SaaS applications let you serve multiple customers from a sing

From C/C   to JavaScript: How It All Works From C/C to JavaScript: How It All Works Apr 14, 2025 am 12:05 AM

The shift from C/C to JavaScript requires adapting to dynamic typing, garbage collection and asynchronous programming. 1) C/C is a statically typed language that requires manual memory management, while JavaScript is dynamically typed and garbage collection is automatically processed. 2) C/C needs to be compiled into machine code, while JavaScript is an interpreted language. 3) JavaScript introduces concepts such as closures, prototype chains and Promise, which enhances flexibility and asynchronous programming capabilities.

See all articles