최신 웹 개발 튜토리얼
 

JavaScript문자열 FONTCOLOR () 메서드

자바 스크립트 문자열 참조 자바 스크립트 문자열 참조

녹색 색상의 텍스트를 표시합니다 :

var str = "Hello World!";
var result = str.fontcolor("green");
»그것을 자신을 시도

자세한 내용은 아래 예 "자신을보십시오."


정의 및 사용

fontcolor() 메소드는 표준이 아니며, 모든 브라우저에서 예상대로 작동하지 않을 수 있습니다.

fontcolor() 메소드는 지정된 색상에 문자열을 표시하는 데 사용됩니다.

이 방법은에 포함 된 문자열을 반환 <font> 과 같은 태그를 :

<글꼴 색상 = "ColorValue에는"> 문자열 </ FONT>

<font> 태그는 HTML5에서 지원되지 않습니다. CSS를 대신 사용합니다.


브라우저 지원

방법
fontcolor()

통사론

string.fontcolor(" color ")

매개 변수 값

Parameter Description
color Required. A color value. The value can be a color name (e.g. red), an RGB value (e.g. rgb(255,0,0)), or a hex number (e.g. #FF0000)e

기술적 세부 사항

반환 값 : 에 포함 된 문자열 <font> 태그
자바 스크립트 버전 : 1.0

예

더 예

관련 방법의 데모 :

var txt = "Hello World!";

document.write("The original string: " + txt);
document.write("<p>Big: " + txt.big() + "</p>");
document.write("<p>Small: " + txt.small() + "</p>");
document.write("<p>Bold: " + txt.bold() + "</p>");
document.write("<p>Italic: " + txt.italics() + "</p>");
document.write("<p>Fixed: " + txt.fixed() + "</p>");
document.write("<p>Strike: " + txt.strike() + "</p>");
document.write("<p>Fontcolor: " + txt.fontcolor("green") + "</p>");
document.write("<p>Fontsize: " + txt.fontsize(6) + "</p>");
document.write("<p>Subscript: " + txt.sub() + "</p>");
document.write("<p>Superscript: " + txt.sup() + "</p>");
document.write("<p>Link: " + txt.link("http://www.w3ii.com") + "</p>");
document.write("<p>Blink: " + txt.blink() + " (works only in Opera)</p>");
»그것을 자신을 시도

자바 스크립트 문자열 참조 자바 스크립트 문자열 참조