متد fontcolor
مثال (متد fontcolor)
نمایش متن به رنگ سبز:
var str = "Hello World!";
var result = str.fontcolor("green");
var result = str.fontcolor("green");
خودتان امتحان کنید »
در انتهای این صفحه، مثال های بیشتری آورده شده است.
تعریف و کاربرد
متد fontcolor()، استاندارد نیست و ممکن ست در تمام مرورگر ها به طور یکسان کار نکند.
از متد fontcolor()، برای نمایش یک متن با یک رنگ مشخص، استفاده می شود.
این متد یک رشته را برمی گردند که در یک تگ <font> محصور شده است، مانند زیر:
<font color="colorvalue">string</font>
تگ <font> در HTML5 پشتیبانی نمی شود، می توانید به جای آن از css استفاده کنید.
پشتیبانی مرورگرها
متد | |||||
---|---|---|---|---|---|
fontcolor() | بله | بله | بله | بله | بله |
نحوه استفاده
string.fontcolor("color")
مقادیر پارامترها
پارامتر | توضیحات |
---|---|
color |
ضروری.یک مقدار رنگ.این مقدار می تواند نام یک رنگ باشد،بعنوان مثال رنگ های rgb یا رنگ های هگزادسیمال. |
جزئیات تکنیکی
مقدار برگشتی | یک رشته که با تگ <font> محصور شده است |
---|---|
نسخه JavaScript | 1.0 |
مثال - خودتان امتحان کنید
مثال (متد fontcolor)
یک نسخه نمایشی از متدهای مرتبط:
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.w3schools.com") + "</p>");
document.write("<p>Blink: " + txt.blink() + " (works only in Opera)</p>");
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.w3schools.com") + "</p>");
document.write("<p>Blink: " + txt.blink() + " (works only in Opera)</p>");
خودتان امتحان کنید »
- نوشته شده توسط احسان عباسی
- بازدید: 5618