基礎JavaScriptの例

1470 ワード

テキストを生成
<html>
<body>

<script type="text/javascript">
document.write("Hello World!")
</script>

</body>
</html>
普通のテキストとラベルを生成します.
 
<html>
<body>

<script type="text/javascript">
document.write("<h1>Hello World!</h1>")
</script>

</body>
</html>
ヘッド部分
<html>
<head>
<script type="text/javascript">
function message()
{
alert("        onload      。")
}
</script>
</head>

<body onload="message()">

</body>
</html>
ボディ部分
<html>
<head>
</head>

<body>

<script type="text/javascript">
document.write("           。")
</script>

</body>
</html>
外部JavaScript
<html>
<head>
</head>
<body>

<script src="../js/example_externaljs.js" tppabs="http://www.w3school.com.cn/js/example_externaljs.js">
</script>

<p>
          "xxx.js"       。
</p>

</body>
</html>