使用Javascript更改文本缩进样式

时间:2013-09-19 19:41:45

标签: javascript

所以在Javascript(不是jQuery)

我可以使用以下代码将ID为example的div的可见性样式设置为可见:

document.getElementById("example").style.visibility = 'visible';

问题是,我如何对text-indent属性做同样的事情?以下不起作用。

document.getElementById("example").style.text-indent = 'none';

3 个答案:

答案 0 :(得分:8)

大多数CSS属性都使用驼峰式上限:

document.getElementById("example").style.textIndent = 'none';

答案 1 :(得分:1)

document.getElementById("example").style.textIndent = 'none';

请注意textIndent。 javascript中的变量名称不允许有#34; - "在名称中,因此当引用为javascript对象属性时,这些样式将转换为驼峰大小写。

答案 2 :(得分:0)

我认为此链接可以回答您的问题http://www.w3schools.com/jsref/prop_style_textindent.asp

- > document.getElementById("example").style.textIndent="50px";

- 编辑 - 有人告诉我,在某些情况下,W3School不是一个很好的信息来源。见w3fools.com