JavaScript的學習入門整理篇第1/3頁_基礎知識

來源:互聯網
上載者:User
<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下一頁閱讀全文
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.