最近の更新

2012年9月5日水曜日

テーブルのセル内の横位置を変更する方法(HTMLのalign属性)

【目的】
JavaScriptで、HTMLのテーブルのセル内の横位置をHTMLのalign属性で変更します。



【手順】
1.「013-TableCellAlignJS.html」というファイルを作成。
2.「013-TableCellAlignJS.html」を以下の様に入力。
<html>
<head>
</head>
<body>
    <table id="table1" border="1">
        <tr>
            <td width="200" align="center">セル1-1</td>
            <td width="200">セル1-2</td>
        </tr>
        <tr>
            <td width="200">セル2-1</td>
            <td width="200">セル2-2</td>
        </tr>
    </table>
    <input type="button" value="left" onclick="javascript:table1.rows[0].cells[0].align='left';">
    <input type="button" value="center" onclick="javascript:table1.rows[0].cells[0].align='center';">
    <input type="button" value="right" onclick="javascript:table1.rows[0].cells[0].align='right';">
</body>
</html>

3.「013-TableCellAlignJS.html」をブラウザで開きます。
4.以下の様に表示されれば成功です。





































以上です。

0 件のコメント:

コメントを投稿

注: コメントを投稿できるのは、このブログのメンバーだけです。

関連記事