<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=gb2312">
<title>Document.writeln()方法</title>
<script language="javascript">
function createsummary()
{
win2=open("","window2")
//win2.document.open("text/plain")
win2.document.writeln("title"+document.title)
win2.document.close()
}
</script>
</head>
<body>
<a name="#top"></a>
<form>
<input type="button" name="help" value="help"onClick="createsummary()">
</form>
<body>
</html>
說一下知識要點吧:
1:JavaScript是一種區分大小寫語言。
2:建議每寫一行要用‘;';
3:命名第一個字母必須是字母、底線或‘$';
4:在JavaScript中聲明變數用var,而且是永久性的;
5:沒有塊級範圍。例如:
Var scope="globle";
function f(){
alert(scope); //顯示“underfined"而不是"globle"
Var scope="local";
alert(scope);
}
F();
與下面的代碼執行個體意義相同
Var scope="globle";
function f(){
Var scope;
alert(scope); //顯示“underfined"而不是"globle"
Var scope="local";
alert(scope);
}
F();
建議:將所有的變數聲明集中起來放置在函數的開頭是一個很好的編程習慣。
6:ECMAScript標準中規定函數不能重載,例如
function doadd(i){
alert(i);
}
function doadd(i){
alert(i);
}
doadd(10);
真正執行的是後一個函數,第二個覆蓋了第一個函數;
7:arguments對象的使用。
function doAdd()
If(arguments.length==1){
alert(arguments[0]+10);
}
If(arguments.length==2){
alert(arguments[0]+arguments[0);
}
doAdd(10);
doAdd(10,20);
運行效果:略……
當前1/3頁
123下一頁閱讀全文