Rumah >hujung hadapan web >tutorial js >在html文档/指定标签中输出时间的方法
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <script> window.onload=function(){ var a=new Date(); //向id为a的p中输出时间 //document.getElementById("a").innerHTML=a; //向当前文档输出时间 document.write(a); } </script> </head> <body> <p id="a"></p> </body> </html>
Atas ialah kandungan terperinci 在html文档/指定标签中输出时间的方法. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!