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