text
English [tekst] American [tɛkst]
n. 텍스트, 원본 텍스트, 교과서; 테마 버전
v. 스타일: texted
장식English [ˌdɛkəreʃən]
n 장식, 장식 패턴, 장식 스타일;
자바스크립트 textDecoration 속성 통사론
기능: 텍스트를 수정합니다.
구문: Object.style.textDecoration=none|밑줄|overline|line-through|blink
자바스크립트 textDecoration 속성 예
<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>
인스턴스 실행 »
온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요