ok-admin/okutils.html

19 lines
417 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>okutils测试</title>
<script src="js/okutils.js"></script>
</head>
<body>
<script type="text/javascript">
var now = new Date();
var formatNow1 = now.dateFormat("yyyy-MM-dd hh:mm:ss");
var formatNow2 = now.dateFormat("yyyy-MM-dd hh:mm");
console.log(formatNow1);
console.log(formatNow2);
</script>
</body>
</html>