最近の更新

2012年9月13日木曜日

DIVの横幅を変更する方法(CSSのwidth属性)

【目的】
JavaScriptで、HTMLのDIVの横幅をCSSのwidth属性で変更します。



【手順】
1.「016-DivWidthCssJS.html」というファイルを作成。
2.「016-DivWidthCssJS.html」を以下の様に入力。
<html>
<head>
</head>
<body>
    <div id="div1" style="background-color:red; width:100px">
        DIVです。
    </div>
    <input type="button" value="100px" onclick="javascript:div1.style.width='100px';">
    <input type="button" value="200px" onclick="javascript:div1.style.width='200px';">
</body>
</html>

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











































以上です。

0 件のコメント:

コメントを投稿

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

関連記事