texte
Anglais [tekst] Américain [tɛkst]
n Texte, texte original; texte, manuel; version
v. Style : texted
décorationAnglais [ˌdekəˈreɪʃn] US [ˌdɛkəˈreʃən]
n Décoration, motif décoratif, médaille
Pluriel : décorations
.propriété javascript textDecoration syntaxe
Fonction : Modifier le texte.
Syntaxe : Object.style.textDecoration=none|underline|overline|line-through|blink
propriété javascript textDecoration exemple
<html> <head> <meta charset="UTF-8"> <script type="text/javascript"> function setTextDecoration() { document.getElementById("p1").style.textDecoration="overline"; } </script> </head> <body> <p id="p1">This is an example paragraph.</p> <p>给文本添加下划线</p> <input type="button" onclick="setTextDecoration()" value="Set text-decoration" /> </body> </html>
Exécuter l'instance »
Cliquez sur le bouton « Exécuter l'instance » pour afficher l'instance en ligne