Style whiteSpace 屬性
Style 對象定義和用法
whiteSpace 屬性設(shè)置或返回如何處理文本中的制表符、換行符和空格符。
語法
設(shè)置 whiteSpace 屬性:
Object.style.whiteSpace="normal|nowrap|pre|inherit"
返回 whiteSpace 屬性:
Object.style.whiteSpace
值 | 描述 |
---|---|
normal | 默認。自動忽略空格符和換行符。 |
nowrap | 忽略空格符,但是不允許換行符。 |
pre | 換行符和其他空格符會被保留。 |
inherit | whiteSpace 屬性的值從父元素繼承。 |
瀏覽器支持
所有主要瀏覽器都支持 whiteSpace 屬性。
注意:IE7 及更早的版本不支持 "inherit" 值。IE8 只有規(guī)定了 !DOCTYPE 才支持 "inherit"。IE9 支持 "inherit"。
實例
實例
保留文本中的換行符和空白符:
<html>
<head>
<script>
function displayResult()
{
document.getElementById("div1").style.whiteSpace="pre";
}
</script>
</head>
<body>
<div id="div1">
This is so me text. This is some tex t. This is some
text. This is some text. This is some text. This is some text.
</div>
<br>
<button type="button" onclick="displayResult()">Preserve whitespace/line breaks</button>
</body>
</html>
<head>
<script>
function displayResult()
{
document.getElementById("div1").style.whiteSpace="pre";
}
</script>
</head>
<body>
<div id="div1">
This is so me text. This is some tex t. This is some
text. This is some text. This is some text. This is some text.
</div>
<br>
<button type="button" onclick="displayResult()">Preserve whitespace/line breaks</button>
</body>
</html>
嘗試一下 ?
Style 對象
更多建議: