Please enable JavaScript.
Coggle requires JavaScript to display documents.
Javascript 入門 (BOM (Screen, Location, History, Navigator, 定時, Cookie), 事件…
Javascript 入門
BOM
Screen
Location
History
Navigator
定時
Cookie
事件
事件寫法
HTML 標籤中
外部檔
外部監聽
事件傳遞
冒泡
捕捉
常用小偏方
終止冒泡事件
取消預設的觸發行為
我正在控制誰(e.target)
常用事件類型
onclick
onchange
onmouseover
onmousemove
onmouseout
onmouseleave
onkeydown
DOM
常用指定元素
getElementsByClassName
getElementsBytagName
querySelector
querySelectorAll
getElementById
DOM-HTML
innerHTML
textContent
innerText
屬性
src
CSS
style
className
DOM-Node
createTextNode
appendChild
removeChild
createElement
DOM 觀念
Document
Element
Text
Attribute
環境與工具介紹
軟體
Sublime Text
Visual Studio Code
Dreamweaver
Notepad++
我要把 Javascript 寫在哪裡
內部
外部
行內
網頁三兄弟
HTML
CSS
Javascript
外部載入
DOMContentLoaded
async
defer
不可不知
迴圈
for
for / in
while
do / while
switch
break
default
條件
if
if...else
if...else if...else
應用
localStorage
setItem
getItem
什麼是 JSON
JSON.parse
JSON.stringify
dataset 自訂屬性
例外處理
try...catch
throw
finally
變數
變數種類
字串
布林
物件
陣列
新增
刪除
數字
變數規則
勿用保留關鍵字
函式
參數
引數
輸出內容
console.log
alert
Hosisting
轉型
正規表達式
嚴格模式
this
let、const
Ajax