abstrakt:<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>時間</title> </head> <body> <script type="text/javascript&quo
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>時間</title> </head> <body> <script type="text/javascript"> var myday = new Date(); document.write(myday+'<br>') document.write(myday.getFullYear()+'年') document.write(myday.getMonth()+1+'月') document.write(myday.getDate()+'日') document.write('星期'+myday.getDay()+'<br>') document.write(myday.getHours()+'時') document.write(myday.getMinutes()+'分') document.write(myday.getSeconds()+'秒'+'<br>') </script> </body> </html>
本章主要學習了通過節(jié)點來改變html樣式和內(nèi)容以及改變css樣式,還有本節(jié)關(guān)于時間的輸出問題,總的來說,需要注意的地方不少,但是難點不是很多,可以短時間內(nèi)掌握并理解
Korrigierender Lehrer:韋小寶Korrekturzeit:2019-03-09 09:20:31
Zusammenfassung des Lehrers:寫的還算是不錯 js中的時間函數(shù)還是比較好掌握的 和我們用的英文單詞還是有些掛鉤的