


How to convert html tags to normal content display? _html/css_WEB-ITnose
I need to dynamically control the value of the input. If I give a value like -1,600,000, which attribute of the input should be assigned a value in js How can he normally display a #ff0000 of 1,600,000?
Reply to discussion (solution)
style="color:#ff000"
Thank you upstairs, but my intention was not to Write it to death, only when it is judged to be a negative number in js, you can use js to give it a value and display it in red. When it is a positive number, you do not need to use red, and use element.value = 123 like this.
Then when js determines that it is a negative number, use js to set the color='#ff0000' of the style of the text box
First, you get the value passed into the input value. Whether it is a negative value, you can use regular expressions! If it is a negative value, when it returns true, set the style for the current input box you need to set, that is, the value of the color you mentioned
(var formatResult = formatDecimal(unformatNumber(orderNominal) - unformatNumber(totalExecNominal),null,null,0,null)); getElement("total_amount").xxx = formatResult ;
If the formatDecimal result is positive The return result of the number is 1,600,000. If it is a negative number, the format result is returned as -1,600,000. So how can I use this return result correctly to make it display red?
(var formatResult = formatDecimal(unformatNumber(orderNominal) - unformatNumber(totalExecNominal),null,null,0,null));
if (isNaN(formatResult)) {
getElement("total_amount ").value = -formatDecimal(unformatNumber(-orderNominal) - unformatNumber(-totalExecNominal),null,null,0,null));
getElement("total_amount").style.color = '#ff0000';
} else {
getElement("total_amount").value = formatResult;
}

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit
