HOME > prototype.js > $() 関数 [prototype.js]

$() 関数 [prototype.js]

$() 関数は、DOM の document.getElementById() 関数へのショートカットです。

[サンプル]

「書き換え領域」という文字を「テキストを変更しました」に書き換え

HTML

<form>
<input id="btn" type="button" value="Check" onclick="writeMsg()"/>
</form>
<div id="res">書き換え領域</div>

JavaScript

function writeMsg() {
    $("res").innerHTML = "テキストを変更しました。";
}
ブックマーク登録: add to hatena hatena.comment 0 user add to del.icio.us 0 user add to livedoor.clip 0 user
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...
『WEBサイト制作者に役立つメルマガ』発行!