HTML DOM Style textTransform 屬性

2018-08-04 20:41 更新

Style textTransform 屬性

Style 對象參考手冊 Style 對象

定義和用法

textTransform 屬性設(shè)置或返回文本的大小寫。

語法

設(shè)置 textTransform 屬性:

Object.style.textTransform="none|capitalize|uppercase|lowercase|inherit"

返回 textTransform 屬性:

Object.style.textTransform

描述
none 默認(rèn)。沒有被轉(zhuǎn)換的字符。
capitalize 每個(gè)單詞的首字符轉(zhuǎn)換為大寫。
uppercase 所有字符都轉(zhuǎn)換為大寫。
lowercase 所有字符都轉(zhuǎn)換為小寫。
inherit textTransform 屬性的值從父元素繼承。


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要瀏覽器都支持 textTransform 屬性。

注意:IE7 及更早的版本不支持 "inherit" 值。IE8 只有規(guī)定了 !DOCTYPE 才支持 "inherit"。IE9 支持 "inherit"。


實(shí)例

實(shí)例

把每個(gè)單詞的首字母轉(zhuǎn)換為大寫:

<html>
<head>
<script>
function displayResult()
{
document.getElementById("p1").style.textTransform="capitalize";
}
</script>
</head>
<body>

<p id="p1">This is some text.</p>
<br>

<button type="button" onclick="displayResult()">Convert text</button>

</body>
</html>

嘗試一下 ?


Style 對象參考手冊 Style 對象
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)