js
Gundy_
好好学习 天天向上
展开
-
js获取当前系统日期
function getNowFormatDate() { var date = new Date(); var seperator = "-"; var month = date.getMonth() + 1; var strDate = date.getDate(); if (month >= 1 && month month = "0" + month; } if (str原创 2015-08-31 19:18:47 · 284 阅读 · 0 评论 -
js动态引入css
function addCssByLink(url){ document.write(' document.write(' href="' + url + '">'); } addCssByLink('../example.css');原创 2015-10-22 13:23:13 · 469 阅读 · 1 评论