JAvascriptの使い方

734 ワード

1つ目:htmlノードに埋め込まれる
<html>
<body>

<input type="button" onclick="document.body.style.backgroundColor='lavender';"
value="Change background color" />

</body>
</html>

2つ目:呼び出し方法
<html>
<body>

<script>
function ChangeBackground()
{
document.body.style.backgroundColor="lavender";
}
</script>

<input type="button" onclick="ChangeBackground()"
value="Change background color" />

</body>
</html>

3つ目:jsファイルのインポート
 <script src=“url” type="text/javascript"></script>