HTML DOM textDecoration ÊôÐÔ
¶¨ÒåºÍÓ÷¨
textDecoration ÊôÐÔ¶ÔÎı¾½øÐÐÐÞÊΡ£
Óï·¨£º
Object.style.textDecoration=none|underline|overline|line-through|blink
¿ÉÄܵÄÖµ
Öµ | ÃèÊö |
---|---|
none | ĬÈÏ¡£¶¨Òå±ê×¼µÄÎı¾¡£ |
underline | ¶¨ÒåÎı¾ÏµÄÒ»ÌõÏß¡£ |
overline | ¶¨ÒåÎı¾ÉϵÄÒ»ÌõÏß¡£ |
line-through | ¶¨Òå´©¹ýÎı¾ÏµÄÒ»ÌõÏß¡£ |
blink | ¶¨ÒåÉÁ˸µÄÎı¾£¨ÎÞ·¨ÔËÐÐÔÚ IE ºÍ Opera ÖУ©¡£ |
ʵÀý
±¾Àý¸øÎı¾ÉèÖÃÏ»®Ïߣº
<html>
<head>
<script type="text/javascript">
function setTextDecoration()
{
document.getElementById("p1").style.textDecoration="overline";
}
</script>
</head>
<body>
<p id="p1">This is an example paragraph.</p>
<input type="button" onclick="setTextDecoration()"
value="Set text-decoration" />
</body>
</html>