Javascript实现输出系统时间


编写一个外部的js文件:
function sys_now(obj) {

            //生成对象
        var date = new Date();
       
        //年
        var year = null; 
        //月
        var month = date.getMonth()+1;
        //日 
        var d = date.getDate(); 

你可能感兴趣的:(技术)