摘要: var date = new Date(new Date().getTime()); Y = date.getFullYear() + '-'; M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) + 阅读全文
posted @ 2018-03-25 14:46 Python研究者 阅读(594) 评论(0) 推荐(0) 编辑
摘要: var c=0;function showLogin(){ alert(c++);}setInterval("showLogin()","1000"); 阅读全文
posted @ 2018-03-25 14:26 Python研究者 阅读(2509) 评论(0) 推荐(0) 编辑
摘要: 1.最简单的调用方式,直接写到html的body标签里面: 3。Js调用 onload方法 <script type="text/javascript"> window.onload = function(){ func1(); func2(); func3(); } </script> 阅读全文
posted @ 2018-03-25 10:56 Python研究者 阅读(19808) 评论(0) 推荐(0) 编辑
摘要: <script type="text/javascript"> var date1= '2015/05/01 00:00:00'; //开始时间 var date2 = new Date(); //结束时间 var date3 = date2.getTime() - new Date(date1). 阅读全文
posted @ 2018-03-25 09:29 Python研究者 阅读(22053) 评论(0) 推荐(0) 编辑
摘要: 1 2 7 阅读全文
posted @ 2018-03-25 09:01 Python研究者 阅读(4343) 评论(0) 推荐(0) 编辑