Js查漏補缺01 js學習筆記

2022-01-28 23:18:51 字數 834 閱讀 1405

doctype html

>

<

html

lang

="en"

>

<

head

>

<

meta

charset

="utf-8"

>

<

title

>js學習筆記

title

>

<

script

src="js.js"

>

alert(

"引入了外部式js,裡面的**會被忽略")

script

>

<

button

onclick

="alert('點選按鈕就會出現這條語句')"

>按鈕

button

>

head

>

<

body

>

<

script

>

varmyname=1

;

varn=2

; document.write(myname

+n);

alert(

"自律使人進步!");

document.write(

"像body中新增內容");

console.log(

"像輸出臺輸出內容")

script

>

body

>

html

>

Js查漏補缺 01

0x00 字串部分 使用 拼接字串與其他型別的資料,拼接出來的型別為字串 包括null與undefined 0x01 資料型別部分 typeof關鍵字可以獲取資料型別 例 typeof a parseint parsefloat 會去掉英文單詞,做動畫時可以用來去掉單位 使用時需注意首位不能為字母,...

JS查漏補缺1

1.function fn fn console.log typeof a undefined console.log typeof b number2.fn1 1 function fn1 fn2 報錯 var fn2 function 3.for infunction student stude...

Js查漏補缺 04

0x00 dom innertext 不識別html innerhtml 可以識別html,此外這兩個函式都能讀取元素內容 當無引數時 以上函式只能修改普通盒子的內容,像表單這種特殊標籤只能用value來修改 this在事件中指向的是事件函式的呼叫者 0x01 一些常用方法 listitems.pu...