JavaScript For Beginners(转载)


Posted in Javascript onJanuary 05, 2007

注:我对原文进行了编辑,对一些词汇标注颜色,方便阅读。本来准备翻译,但是觉得文章简单易懂,而且原文写得很好,所以就不献丑了。希望对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 </ title >
< script  language ="JavaScript" >
<!--
document.write(
" Hello World! " );
// -->

</ script >
</ head >
< body >  Hi, man!  </ body >
</ html >

Usually, JavaScript code starts with the tag <Script language="JavaScript"> and ends with the tag </script>. The code placed between <head> and </head>. Sometimes, people embed the code in the <body> tags:

< html >
< head ></ head >
< body >
< script >
JavaScript For Beginners(转载)..
//  The code embedded in the <body> tags.
</ script >
</ body >
</ html >

Why do we place JavaScript code inside comment fields <!-- and //--> ?
It's for ensuring that the Script is not displayed by old browsers that do not support JavaScript. This is optional, but considered good practice. The LANGUAGE attribute also is optional, but recommended. You may specify a particular version of JavaScript:  

< script  language ="JavaScript1.2" >

You can use another attribute SRC to include an external file containing JavaScript code: 

< script  language ="JavaScript"  src ="hello.js" ></ script >

For example, shown below is the code of the external file hello.js :

document.write("Hello World!")

The external file is simply a text file containing JavaScript code with the file name extension ".js".

Note:

  1. Including an external file only functions reliably across platforms n the version 4 browsers.
  2. The code can't include tags <script language...> and </script>, or you will get an error message.

write and writeln

In order to output text in JavaScript you must use write() or writeln(). Here's an example:

< HTML >
< HEAD >
< TITLE >  Welcome to my site </ TITLE ></ HEAD >
< BODY >
< SCRIPT  LANGUAGE ="JAVASCRIPT" >
<!--
document.write(
" Welcome to my site! " );
//  -->

</ SCRIPT >
</ BODY >
</ HTML >

Note: the document object write is in lowercase as JavaScript is case sensitive. The difference between write and writeln is: write just outputs a text, writeln outputs the text and a line break.


Document object

The document object is one of the most important objects of JavaScript. Shown below is a very simple JavaScript code:  

document.write("Hi there.")

In this code, document is the object. write is the method of this object. Let's have a look at some of the other methods that the document object possesses.

lastModified

You can always include the last update date on your page by using the following code:      
< script  language ="JavaScript" >
document.write(
" This page created by John N. Last update: "   +  document.lastModified);
</ script >  

All you need to do here is use the lastModified property of the document. Notice that we used + to put together This page created by John N. Last update: and document.write.

 

bgColor and fgColor

Lets try playing around with bgColor and fgColor
< script >
document.bgColor
= " black "
document.fgColor
= " #336699 "
</ script >  


Message Box

alert

There are three message boxes: alert, confirm, and prompt. Let's look at the first one:
 
 
< body >
< script >
window.alert(
" Welcome to my site! " )
</ script >

</ body >

You can put whatever you want inside the quotation marks.

 

confirm

An example for confirm box: 
window.confirm("Are you sure you want to quit?") 

prompt

Prompt box is used to allow a user to enter something according the promotion: 
 
window.prompt("please enter user name") 

In all our examples above, we wrote the box methods as window.alert(). Actually, we could simply write the following instead as:      
 
alert()
confirm()
prompt()


Variables and Conditions

Let's see an example:   

< script >
var  x = window.confirm( " Are you sure you want to quit " )if  (x)
    window.alert(
" Thank you. "
)
else

    window.alert(
" Good choice. " )
</ script >

There are several concepts that we should know. First of all, var x = is a variable declaration. If you want to create a variable, you must declare the variable using the var statement. x will get the result, namely, true or false . Then we use a condition statement if else to give the script the ability to choose between two paths, depending on this result (condition for the following action). If the result is true (the user clicked "ok"), "Thank you" appears in the window box. If the result is false (the user clicked "cancel"), "Good choice" appears in the window box instead. So we can make more complex boxes using var, if and those basic methods.

< script >
var  y = window.prompt( " please enter your name " )
window.alert(y)
</ script >

Another example:    

< html >< head >
< script >
var  x = confirm( " Are you sure you want to quit? " )
if  ( !
x)
    window.location
= " http://www.yahoo.com "

</ script >
</ head >
< body >
Welcome to my website!.
</ body ></ html >

If you click "cancel", it will take you to yahoo, and clicking ok will continue with the loading of the current page "Welcome to my website!". Note: if(!x) means: if click "cancel". In JavaScript, the exclamation mark !means: "none".


Function

Functions are chunks of code.Let's create a simple function: 

function test()
{
   document.write("Hello can you see me?")
}

Note that if only this were within your <script> </script> tags, you will not see "Hello can you see me?" on your screen because functions are not executed by themselves until you call upon them. So we should do something:   
  
 

function test()
{
   document.write("Hello can you see me?")
}
test() 

Last line test() calls the function, now you will see the words "Hello can you see me?".


Event handler

What are event handlers? They can be considered as triggers that execute JavaScript when something happens, such as click or move your mouse over a link, submit a form etc.

onClick

onClick handlers execute something only when users click on buttons, links, etc. Let's see an example:
< script >
function  ss()
{
alert(
" Thank you! "
)
}
</ script >

< form >
< input  type ="button"  value ="Click here"  onclick ="ss()" >
</ form >

The function ss() is invoked when the user clicks the button. Note: Event handlers are not added inside the <script> tags, but rather, inside the html tags.

onLoad

The onload event handler is used to call the execution of JavaScript after loading:   
< body  onload ="ss()" >
< frameset  onload ="ss()" >
< img  src ="whatever.gif"  onload ="ss()" >

onMouseover,onMouseout

These handlers are used exclusively with links.
< href ="#"  onMouseOver ="document.write('Hi, nice to see you!" > Over Here! </ a >
< href ="#"  onMouseOut ="alert('Good try!')" > Get Out Here! </ a >

onUnload

onUnload executes JavaScript while someone leaves the page. For example to thank users. 
< body  onunload ="alert('Thank you for visiting us. See you soon')" >

Handle multiple actions

How do you have an event handler call multiple functions/statements? That's simple. You just need to embed the functions inside the event handler as usual, but separate each of them using a semicolon: 
< form >
< input  type ="button"  value ="Click here!"  onClick ="alert('Thanks for visiting my site!');window.location='http://www.yahoo.com'" >
</ form >
 


Form

Let's say you have a form like this:   

< form  name ="aa" >
< input  type ="text"  size ="10"  value =""  name ="bb" >< br >
< input  type ="button" value ="Click Here" onclick ="alert(document.aa.bb.value)" >
</ form >

Notice that we gave the names to the form and the element. So JavaScript can gain access to them.

onBlur

If you want to get information from users and want to check each element (ie: user name, password, email) individually, and alert the user to correct the wrong input before moving on, you can use onBlur. Let's see how onBlur works: 
< html >
<
head
>
<
script >

function  emailchk()
{
var  x =
document.feedback.email.value
if  (x.indexOf( " @ " ) ==- 1
)
{
    alert(
" It seems you entered an invalid email address. "
)
    document.feedback.email.focus()
}
}
</ script
>
</
head
>

< body >
< form
name ="feedback" >

Email:
< input  type ="text"  size ="20"  name ="email"
onblur
="emailchk()" >< br >
Comment: 
< textarea  name ="comment"  rows ="2"  cols ="20" ></ textarea >< br >
< input  type ="submit"  value ="Submit" >
</ form >
</ body >
</
html >

If you enter an email address without the @, you'll get an alert asking you to re-enter the data . What is: x.indexOf("@")==-1? This is a method that JavaScript can search every character within a string and look for what we want. If it finds it will return the position of the char within the string. If it doesn't, it will return -1. Therefore, x.indexOf("@")==-1basically means: "if the string doesn't include @, then: 
alert("It seems you entered an invalid email address.")
document.feedback.email.focus()

What's focus() ? This is a method of the text box, which basically forces the cursor to be at the specified text box. onsubmitUnlike onblur, onsubmit handler is inserted inside the <form> tag, and not inside any one element. Lets do an example:    
< script >
<!--
function  validate()
{
if (document.login.userName.value == ""
)
{
    alert (
" Please enter User Name "
)
    
return   false

}
if (document.login.password.value == "" )
{
    alert (
" Please enter Password "
)
    
return   false

}
}
// -->
</ script >

< form  name ="login"  onsubmit ="return validate()" >
< input  type ="text"  size ="20"  name ="userName" >
< input  type ="text"  size ="20"  name ="password" >
< input  type ="submit"  name ="submit"  value ="Submit" >
</ form >

Note:
if(document.login.userName.value=="").This means "If the box named userName of the form named login contains nothing, then...". return false. This is used to stop the form from submitting. By default, a form will return true if submitting. return validate() That means, "if submitting, then call the function validate() "

Protect a file by using Login

Let's try an example 
< html >< head >
< SCRIPT  Language ="JavaScript" >
function  checkLogin(x)
{
if  ((x.id.value  !=   " Sam " ) || (x.pass.value  != " Sam123 "
))
{
    alert(
" Invalid Login "
);
    
return   false
;
}
else

    location
= " main.htm "
}
</ script >

</ head >< body >
< form >
< p > UserID: < input  type ="text"  name ="id" ></ p >
< p > Password: < input  type ="password"  name ="pass" ></ p >
< p >< input  type ="button"  value ="Login"  onClick ="checkLogin(this.form)" ></ p >
</ form >
</ body ></ html >

|| means "or", and , != indicates "not equal". So we can explain the script: "If the id does not equal 'Sam', or the password does not equal 'Sam123', then show an alert ('Invalid Login') and stop submitting. Else, open the page 'main.htm'".
 

Link

In most cases, a form can be repaced by a link:   

< href ="JavaScript:window.location.reload()" > Click to reload! </ a >

More examples:        

< href ="#"  onClick ="alert('Hello, world!')" > Click me to say Hello </ a >< br >

< href ="#"  onMouseOver ="location='main.htm'" > Mouse over to see Main Page </ a >



Date

Let's see an example:

< HTML >< HEAD >< TITLE > Show
Date
</ TITLE ></ HEAD >

< BODY >
< SCRIPT  LANGUAGE ="JavaScript" >
var  x =   new  Date();
document.write (x);
</ SCRIPT >

</ BODY ></ HTML >

To activate a Date Object, you can do this: var x = new Date(). Whenever you want to create an instance of the date object, use this important word: new followed by the object name().

Dynamically display different pages

You can display different pages according to the different time. Here is an example: 
var banTime= new Date()
var ss=banTime.getHours()
if (ss
< =12
)
    document.write("<img src
='banner1.gif' >
")
else
    document.write("
< img  src ='banner2.gif' > ") 
 
Date object
Methods
getDate getTimegetTimezoneOffset getDaygetMonthgetYear getSecondsgetMinutesgetHours


Window

Open a window

To open a window, simply use the method "window.open()": 
< form >
< input  type ="button"  value ="Click here to see"  onclick ="window.open('test.htm')" >
</ form >  
 
You can replace test.htm with any URL, for example, with http://www.yahoo.com

 

Size, toolbar, menubar, scrollbars, location, status

Let's add some of attributes to the above script to control the size of the window, and show: toolbar, scrollbars etc. The syntax to add attributes is:
open("URL","name","attributes")

For example: 
 
< form >
< input  type ="button"  value ="Click here to see"
onclick
="window.open('page2.htm','win1','width=200,height=200,menubar')" >
</ form >  

Another example with no attributes turned on, except the size changed:   
< form >
< input  type ="button"  value ="Click here to see"
onclick
="window.open('page2.htm','win1','width=200,height=200')" >
</ form >

Here is the complete list of attributes you can add:
width height toolbar
location directories status
scrollbars resizable menubar

Reload

To reload a window, use this method:           
   
window.location.reload()

Close Window

Your can use one of the codes shown below: 
< form >
< input  type ="button"  value ="Close Window"  onClick ="window.close()" >
</ form >
< href ="javascript:window.close()" > Close Window </ a >
 

Loading

The basic syntax when loading new content into a window is: 
 
window.location="test.htm"

This is the same as   
< href ="test.htm>Try this </a>

Let's provide an example, where a confirm box will allow users to choose between going to two places: 
< script >
<!--
function  ss()
{
var  ok = confirm('Click  " OK "  to go to yahoo,  " CANCEL "
 to go to hotmail')
if
 (ok)
location
= " http://www.yahoo.com "

else
location
= " http://www.hotmail.com "
}
// -->
</ script >
 

Remote Control Window

Let's say you have opened a new window from the current window. After that, you will wonder how to make a control between the two windows. To do this, we need to first give a name to the window.Look at below:
aa=window.open('test.htm','','width=200,height=200')

By giving this window a name "aa", it will give you access to anything that's inside this window from other windows. Whenever we want to access anything that's inside this newly opened window, for example, to write to this window, we would do this: aa.document.write("This is a test.").

Now, let's see an example of how to change the background color of another window: 

< html >< head >< title ></ title ></ head >
< body >
< form >
< input  type ="button"  value ="Open another page"
onClick
="aa=window.open('test.htm','','width=200,height=200')" >
< input  type ="radio"  name ="x"  onClick ="aa.document.bgColor='red'" >
< input  type ="radio"  name ="x"  onClick ="aa.document.bgColor='green'" >
< input  type ="radio"  name ="x"  onClick ="aa.document.bgColor='yellow'" >
</ form >
</ body ></ html >

 

opener

Using "opener" property, we can access the main window from the newly opened window.

 

Let's create Main page:   

< html >
< head >
< title ></ title >
</ head >
< body >
< form >
< input  type ="button"  value ="Open another page"
onClick ="aa=window.open('test.htm','','width=100,height=200')" >
</ form >
</ body >
</ html >


Then create Remote control page (in this example, that is test.htm): 
 

< html >
< head >
< title ></ title >
< script >
function  remote(url){
window.opener.location
=
url
}
</ script >

</ head >
< body >
< p >< href ="#"  onClick ="remote('file1.htm')" > File1 </ a ></ p >
< p >< href ="#"  onClick ="remote('file2.htm')" > File2 </ a ></ p >
</ body >
</ html >


Try it now!


Frame

One of the most popular uses of loading multiple frames is to load and change the content of more than one frame at once. Lets say we have a parent frame: 

< html >
< frameset  cols ="150,*" >
< frame  src ="page1.htm"  name ="frame1" >
< frame  src ="page2.htm"  name ="frame2" >
</ frameset >
</ html >

We can add a link in the child frame "frame1" that will change the contents of not only page1, but page2 too. Shown below is the html code for it:   

< html >
< body >
< h2 > This is page 1  </ h2 >
< href ="page3.htm"
onClick
="parent.frame2.location='page4.htm'" > Click Here </ a >
</ body >
</ html >

Notice: You should use "parent.frame2.location" to access another frame. "parent" standards for the parent frame containing the frameset code.

Source:http://www.codeproject.com/jscript/jsbeginner.asp

Javascript 相关文章推荐
javascript之ESC(第二类混淆)
May 06 Javascript
13 个JavaScript 性能提升技巧分享
Jul 26 Javascript
得到form下的所有的input的js代码
Nov 07 Javascript
jQuery web 组件 后台日历价格、库存设置的代码
Oct 14 Javascript
浅谈键盘上回车按钮的js触发事件
Feb 13 Javascript
javascript 单例模式详解及简单实例
Feb 14 Javascript
Vue 实现双向绑定的四种方法
Mar 16 Javascript
在js代码拼接dom对象到页面上的模板总结
Oct 21 Javascript
支付宝小程序自定义弹窗dialog插件的实现代码
Nov 30 Javascript
JS实现的获取银行卡号归属地及银行卡类型操作示例
Jan 08 Javascript
RxJS在TypeScript中的简单使用详解
Apr 13 Javascript
vuex存取值和映射函数使用说明
Jul 24 Javascript
JavaScript的目的分析
Jan 05 #Javascript
关于JavaScript的gzip静态压缩方法
Jan 05 #Javascript
关于Javascript 的 prototype问题。
Jan 03 #Javascript
彻底搞懂JS无缝滚动代码
Jan 03 #Javascript
经典的解除许多网站无法复制文字的绝招
Dec 31 #Javascript
对象的类型:本地对象(1)
Dec 29 #Javascript
JavaScript高级程序设计
Dec 29 #Javascript
You might like
php使用异或实现的加密解密实例
2013/09/04 PHP
php中mail函数发送邮件失败的解决方法
2014/12/24 PHP
php通过前序遍历树实现无需递归的无限极分类
2015/07/10 PHP
PHP SFTP实现上传下载功能
2017/07/26 PHP
PHP基于phpqrcode类生成二维码的方法详解
2018/03/14 PHP
javascript 支持链式调用的异步调用框架Async.Operation
2009/08/04 Javascript
解决Extjs上传图片无法预览的解决方法
2012/03/22 Javascript
左右悬浮可分组的网站QQ在线客服代码(可谓经典)
2012/12/21 Javascript
A标签中通过href和onclick传递的this对象实现思路
2013/04/19 Javascript
jquery自定义函数的多种方法
2014/01/09 Javascript
javascript调试之DOM断点调试法使用技巧分享
2014/04/15 Javascript
JS获取单击按钮单元格所在行的信息
2014/06/17 Javascript
JS获取浏览器语言动态加载JS文件示例代码
2014/10/31 Javascript
javaScript基础语法介绍
2015/02/28 Javascript
Bootstrap源码解读下拉菜单(4)
2016/12/23 Javascript
详解Angualr 组件间通信
2017/01/21 Javascript
Node.js查找当前目录下文件夹实例代码
2017/03/07 Javascript
Javascript别踩白块儿(钢琴块儿)小游戏实现代码
2017/07/20 Javascript
Vue 项目代理设置的优化
2018/04/17 Javascript
JavaScript new对象的四个过程实例浅析
2018/07/31 Javascript
微信小程序自定义组件components(代码详解)
2019/10/21 Javascript
[02:35]DOTA2英雄基础教程 末日使者
2013/12/04 DOTA
Python中random模块用法实例分析
2015/05/19 Python
在Python中构建增广矩阵的实现方法
2019/07/01 Python
解决python多行注释引发缩进错误的问题
2019/08/23 Python
python文字转语音的实例代码分析
2019/11/12 Python
pytorch常见的Tensor类型详解
2020/01/15 Python
在Anaconda3下使用清华镜像源安装TensorFlow(CPU版)
2020/04/19 Python
pip已经安装好第三方库但pycharm中import时还是标红的解决方案
2020/10/09 Python
css3闪亮进度条效果实现思路及代码
2013/04/17 HTML / CSS
澳大利亚的奢侈品牌:Oroton
2016/08/26 全球购物
二手房购房意向书范本
2014/04/01 职场文书
民主生活会汇报材料
2014/12/15 职场文书
质量整改通知单
2015/04/21 职场文书
民事起诉书范本
2015/05/19 职场文书
大一新生军训新闻稿
2015/07/17 职场文书