代码编辑器:
x
1
<script>
2
function displayResult(){
3
document.getElementById("td1").style.verticalAlign="bottom";
4
}
5
</script>
6
<table border="1" height="100px">
7
<tr>
8
<td id="td1">一些实例文本</td>
9
</tr>
10
</table>
11
<br>
12
<input type="button" onclick="displayResult()" value="对齐文本">
13