HTML DOM align 属性
JavaScript基础 2022-06-08 17:19:06小码哥的IT人生shichen
HTML DOM align 属性
定义和用法
align 属性可设置或返回数据在行中的水平对齐方式。
语法
tablerowObject.align=left|center|right|justify|char
实例
下面的例子更改了数据在行中的水平对齐方式:
<html>
<head>
<script type="text/javascript">
function leftAlign()
{
document.getElementById('header').align="left";
}
</script>
</head>
<body>
<table width="100%" border="1">
<tr id="header">
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr>
<td>Peter</td>
<td>Griffin</td>
</tr>
</table>
<br />
<input type="button" onclick="leftAlign()"
value="Left-align table row" />
</body>
</html>
TIY
完整实例【对齐行中的单元格内容】:
<html>
<head>
<script type="text/javascript">
function leftAlign()
{
document.getElementById('header').align="left";
}
</script>
</head>
<body>
<table width="100%" border="1">
<tr id="header">
<th>名</th>
<th>姓</th>
</tr>
<tr>
<td>John</td>
<td>Adams</td>
</tr>
</table>
<br />
<input type="button" onclick="leftAlign()" value="左对齐表格行" />
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html