пример
Отображение текста в зеленый цвет:
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> тега |
---|---|
Версия JavaScript: | 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>");
Попробуй сам " JavaScript Строка Ссылка