您的当前位置:首页正文

JavaScriptForBeginners(转载)_基础知识

2020-11-27 来源:化拓教育网

注:我对原文进行了编辑,对一些词汇标注颜色,方便阅读。本来准备翻译,但是觉得文章简单易懂,而且原文写得很好,所以就不献丑了。希望对JavaScript初学者能有所帮助。你可以跟着作者一起做那些示例代码,等读完文章的时候,你就可以掌握JavaScript的基本操作了,你会发现其实这一切很容易。

Contents
Embedding and including
write and writeln
Document object
Message box
Function
Event handler
Form
Link
Date
Window
Frame

Embedding and including

Let's first see a simple example:

< html >
< head >
< title > This is a JavaScript example
< script language ="JavaScript" >

document.write( " Hello World! " );
// -->



< body > Hi, man!

Usually, JavaScript code starts with the tag