HTML DOM textAlign 属性
JavaScript基础 2022-06-08 14:52:03小码哥的IT人生shichen
HTML DOM textAlign 属性
定义和用法
textAlign 属性对齐元素中的文本。
语法:
Object.style.textAlign=left|right|center|justify
可能的值
值 | 描述 |
---|---|
left | 把文本排列到左边。默认值:由浏览器决定。 |
right | 把文本排列到右边。 |
center | 把文本排列到中间。 |
justify | 根据 textJustify 属性对齐文本。 |
实例
本例对齐一段文本:
<html>
<head>
<script type="text/javascript">
function setTextAlign()
{
document.getElementById("p1").style.textAlign="right";
}
</script>
</head>
<body>
<p id="p1">This is an example paragraph.</p>
<input type="button" onclick="setTextAlign()"
value="Align text" />
</body>
</html>
TIY
完整实例【textAlign - 对齐一段文本】:
<html>
<head>
<script type="text/javascript">
function setTextAlign()
{
document.getElementById("p1").style.textAlign="right";
}
</script>
</head>
<body>
<p id="p1">This is an example paragraph.</p>
<input type="button" onclick="setTextAlign()" value="Align text" />
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html