📄 12-1.html
字号:
<html><head><title>Today's Date</title> <script language="JavaScript"> // Define a function for use later on. function print_todays_date() { var d = new Date(); // Get today's date and time document.write(d.toLocaleString()); // Insert it into the document } </script></head><body>The date and time are:<br><script language="JavaScript"> // Now call the function we defined above. print_todays_date();</script></body></html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -