🙂
JavaScript - 程式設計
  • JavaScript - 程式設計
  • 1. 簡介
    • 1.1 講者簡介
    • 1.2 課程簡介
    • 1.3 開發工具簡介
    • 1.4 第一個 JavaScript
  • 2. 網站技術簡介
    • 2.1 網站前端技術
    • 2.2 網站後端技術
    • 2.3 JavaScript 簡介
  • 3. JavaScript程式語言
    • 3.1 套用 JavaScript
    • 3.2 註解(Comment)
    • 3.3 變數(Variable)
    • 3.4 資料型態(Data Types)
    • 3.5 Strict 模式
    • 3.6 運算子(Operator)
    • 3.7 字串(String)
    • 3.8 數值(Number)
    • 3.9 陣列(Array)
    • 3.10 物件(Object)
    • 3.11 條件式(Conditional)
    • 3.12 迴圈(Loop)
    • 3.13 函式(Function)
    • 3.14 類別(Class)
    • 3.15 傳值呼叫、傳址呼叫
    • 3.16 變數可視範圍(scope)
    • 3.17 錯誤補捉(Errors)
    • 3.18 資料格式
  • 4. JavaScript常用函式及主題
    • 4.1 JSON
    • 4.2 時間間隔執行
    • 4.3 數學(Math)
    • 4.4 日期時間(Date)
    • 4.5 陣列迭代(Iteration)
    • 4.6 陣列排序(Sort)
    • 4.7 正規表達式(Regular Expression)
    • 4.8 效能測試
    • 4.9 this 關鍵字
  • 5. 參考資料
Powered by GitBook
On this page

5. 參考資料

Previous4.9 this 關鍵字

Last updated 3 years ago

推薦書籍:

網站

web2.html 的小icon:

<img src="https://alldata.sgp1.digitaloceanspaces.com/images/external_link.png" class="icon_external">

web3.html 原始碼:

<!DOCTYPE html>
<html lang="zh-Hant" dir="ltr">
  <head>
    <meta charset="utf-8">
    <title></title>
    <style>
      #file_input{
        border: 1px solid red;
        /* display: none; */
      }
      #file_name{
        border: 1px solid blue;
        display: inline-block;
        min-width: 50px;
        height: 18px;
      }
      #img_block{
        border: 1px solid black;
      }
      .small_width{
        width: 100px;
      }
    </style>
  </head>
  <body>

    <input type="file" id="file_input">
    <button type="button" id="choose_file">選取檔案</button>

    <div id="img_block">
      選擇的檔案:
      <span id="file_name"></span><br>
    </div>

    <script>

    </script>
  </body>
</html>
你所不知道的 JS | 導讀,型別與文法 (You Don't Know JS: Up & Going)
你所不知道的 JS|範疇與 Closures,this與物件原型
你所不知道的 JS|ES6 與未來發展
你所不知道的 JS|非同步處理與效能
w3schools JavaScript
JavaScript 保留字
Unix TimeStamp