Derniers tutoriels de développement web
 

JavaScript Chaîne small() Method

<JavaScript Chaîne Référence

Exemple

Afficher une chaîne dans une petite police:

var str = "Hello World!";
var result = str.small();
Essayez vous - même »

Plus "Try it Yourself" - "Try it Yourself" exemples ci - dessous.


Définition et utilisation

La small() méthode n'est pas standard, et peut ne pas fonctionner comme prévu dans tous les navigateurs.

La small() méthode est utilisée pour afficher une chaîne dans une petite police.

Cette méthode retourne la chaîne intégrée dans la <small> balise, comme ceci:

<Small> string </ small>


Support du navigateur

méthode
small() Oui Oui Oui Oui Oui

Syntaxe

Paramètres
Aucun.

Détails techniques

Valeur de retour: Une chaîne intégrée dans la <small> balise
JavaScript Version: 1.0

Exemples

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 vous - même »

<JavaScript Chaîne Référence