abstrait:<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>JavaScript</title> <style> #ShiJianBox{ width: 300px; height: 300px;
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>JavaScript</title> <style> #ShiJianBox{ width: 300px; height: 300px; background: #ccc; border-radius: 10px; } </style> </head> <body> <div id="ShiJianBox"> </div> <span>當前時間:</span> <script type="text/javascript"> ShiJianBox.onclick=function ShiJianBoxChange(x) { ShiJian = document.getElementById('ShiJianBox') ShiJian.style.borderRadius="150px" } var MyDate = new Date(); document.write(MyDate.getFullYear()+"年"); document.write((MyDate.getMonth()+1)+"月"); document.write(MyDate.getDate()+"日"); document.write("周"+MyDate.getFullYear()); document.write(MyDate.getHours()+"時"); document.write(MyDate.getMinutes()+"分"); document.write(MyDate.getSeconds()+"秒"); </script> </body> </html>
運行前
運行后
Professeur correcteur:滅絕師太Temps de correction:2018-12-10 11:58:05
Résumé du professeur:測試效果完成的不錯!基礎課比較簡單,都是為后期學習做鋪墊,繼續(xù)加油!好好掌握!