متد big
مثال (متد big)
نمایش یک رشته با یک فونت بزرگ(big).
var str = "Hello World!";
var result = str.big();
var result = str.big();
خودتان امتحان کنید »
در انتهای این صفحه، مثال های بیشتری آورده شده است.
تعریف و کاربرد
متد big()، استاندارد نیست و ممکن است در تمام مرورگرها به طور یکسان کار نکند.
از متد big()، برای نمایش یک رشته با یک فونت بزرگ استفاده می شود.
این متد یک رشته را برمی گرداند که در یک تگ <big> محصور شده است، مانند زیر:
<big>string</big>
تگ <big> در HTML5 پشتیبانی نمی شود. به جای آن می توانید از CSS استفاده کنید.
پشتیبانی مرورگرها
متد | |||||
---|---|---|---|---|---|
big() | بله | بله | بله | بله | بله |
نحوه استفاده
string.big()
پارامترها
None. |
جزئیات تکنیکی
مقدار برگشتی | یک رشته که محصور در یک تگ <big> است. |
---|---|
نسخه JavaScript | 1.0 |
مثال - خودتان امتحان کنید
مثال (متد big)
یک نسخه نمایشی از متدهای مرتبط:
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>");
خودتان امتحان کنید »
- نوشته شده توسط احسان عباسی
- بازدید: 5996