BootstrapAdmin/Bootstrap.Admin/wwwroot/js/lock.js

17 lines
424 B
JavaScript
Raw Normal View History

2018-06-07 00:45:47 +08:00
$(function () {
$('body').addClass('lock-screen');
$('#time').text((new Date()).format('HH:mm:ss'));
setInterval(function () {
$('#time').text((new Date()).format('HH:mm:ss'));
}, 500);
$.extend($.validator.messages, { required: "请输入密码" });
// validate
$('form').autoValidate({
password: {
required: true,
maxlength: 50
}
});
2016-11-06 02:11:03 +08:00
});