codecamp

HTML DOM Style textDecorationStyle 属性

Style textDecorationStyle 属性

Style 对象参考手册 Style 对象

实例

在段落的下方显示一条波浪线:

document.getElementById("myP").style.textDecorationStyle="wavy";

尝试一下 »

定义和用法

textDecorationStyle 属性设置或返回线条如何显示。


浏览器支持

Internet Explorer Firefox Opera Google Chrome Safari

几乎所有的主流浏览器都不支持 textDecorationStyle 属性。

Firefox 支持另一个可替代该属性的属性,即 MozTextDecorationStyle 属性。


语法

返回 textDecorationStyle 属性:

object.style.textDecorationStyle

设置 textDecorationStyle 属性:

object.style.textDecorationStyle="solid|double|dotted|dashed|wavy|initial|inherit"

属性值

描述
solid 默认值。线条将显示为单线。
double 线条将显示为双线。
dotted 线条将显示为点状线。
dashed 线条将显示为虚线。
wavy 线条将显示为波浪线。
initial 设置该属性为它的默认值。请参阅 initial
inherit 从父元素继承该属性。请参阅 inherit

技术细节

默认值: solid
返回值: 字符串,表示元素的 text-decoration-style 属性。
CSS 版本 CSS3


相关文章

CSS 参考手册:text-decoration-style 属性


Style 对象参考手册 Style 对象

温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

HTML DOM对象

HTML DOM 引用对象

HTML DOM Password 对象

HTML DOM Link 对象

HTML DOM Select 对象

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }