Walkthrough of JavaScript FontColor Method (display string by specified color) _ Basics

Source: Internet
Author: User

JavaScript FontColor Method

The FontColor method returns a colored string that is defined using the Color property in the HTML font label. The syntax is as follows:

Copy Code code as follows:

Str_object.fontcolor (color)

Parameter description:

Parameters Description
Str_object The string to manipulate (object)
Color Necessary. Color name (red), RGB value (RGB (255,0,0)), or hexadecimal number (#FF0000)

Tip: This method does not conform to the ECMA standard and is not recommended for use.

FontColor Method Instance

Copy Code code as follows:

<script language= "JavaScript" >

var str = "Www.jb51.net";
document.write (Str.fontcolor ("Red"));

</script>

Run the example and output:

Copy Code code as follows:

Www.jb51.net

Tip: This method returns the string defined using the HTML color label, which means that the method does not dynamically change the color of the font. If you want to change the element font color dynamically, refer to the following example:

Extended reading: Changing page element Font Color

Copy Code code as follows:

<script language= "JavaScript" >

function Changfont (x) {
var font_style = x;
var Article = document.getElementById ("article");
if (typeof Font_style = = "string") {
Article.style.color = Font_style;
}
}

</script>

<body>
<p>
<a onclick= "Changfont (' black ');" > Black </a> <a onclick= "Changfont" (' Red '); > Red </a>
<a onclick= "Changfont (' Blue ');" > Blue </a>
</p>
<p id= "article" >
I am some words ... <br/>
Some Text ...
</p>
</body>

In this example, you can dynamically change the color of the font (id= "article") by using JavaScript to control the way the font CSS is styled.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.