JavaScript Chaîne de référence
Exemple
Afficher un texte en gras:
var str = "Hello World!";
var result = str.bold();
Essayez - le vous - même » Définition et utilisation
Le bold() méthode est standard, et peut ne pas fonctionner comme prévu dans tous les navigateurs.
Le bold() méthode est utilisée pour afficher une chaîne en caractères gras.
Cette méthode renvoie la chaîne incorporée dans le <b> tag, comme ceci:
<B> string </ b>
support du navigateur
méthode | |||||
---|---|---|---|---|---|
bold() | Oui | Oui | Oui | Oui | Oui |
Syntaxe
string.bold()
Paramètres
Aucun. |
Détails techniques
Valeur de retour: | Une chaîne intégrée dans le <b> tag |
---|---|
JavaScript Version: | 1.0 |
Autres exemples
Exemple
Une démonstration de méthodes connexes:
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>");
Essayez - le vous - même » JavaScript Chaîne de référence