發表文章

目前顯示的是 2月, 2019的文章

[JS] console.log會騙人

就是經過JS運算出來 使用console.log 如果是字串的123 也是會顯示 123 不像直接在瀏覽器的 console.log 會顯示 "123" 有那個"" 所以要確認資料屬性 要去檢測資料type

[JS] input 取的值不管是啥都是字串(string)

< input type = "number" id = "myinput" > //因為input取的值是字串(string) 所以取值要轉成數字(number) //所以即使input 的type設定為number 但typeof去檢測都是string 所有原文 <! DOCTYPE html > < html lang = "en" > < head > < meta charset = "UTF-8" > < meta name = "viewport" content = "width=device-width, initial-scale=1.0" > < meta http-equiv = "X-UA-Compatible" content = "ie=edge" > < title > Document </ title > </ head > < body > < input type = "number" id = "myinput" > < button onclick = " func ()" > go </ button > < br > < div id = "output" ></ div > < script > let myinput = document . querySelector ( '#myinput' ); let output = document . querySelector ( '#output...