grzx.js
1.02 KB
layui.use('element', function () {
let element = layui.element; //导航的hover效果、二级菜单等功能,需要依赖element模块
//监听导航点击
element.on('nav(demo)', function (elem) {
//console.log(elem)
layer.msg(elem.text());
});
});
$(function(){
$('#username').text(getCookie().username)
$('#phone').text(getCookie().phone)
$('#zjhm').text(getCookie().zjhm)
$('#recordtime').text(getCookie().recordtime)
$('#hellotime').text(getTimeState())
})
function getTimeState(){
// 获取当前时间
let timeNow = new Date();
// 获取当前小时
let hours = timeNow.getHours();
// 设置默认文字
let text = '';
// 判断当前时间段
if (hours >= 0 && hours <= 10) {
text = '早上好:';
} else if (hours > 10 && hours <= 14) {
text = '中午好:';
} else if (hours > 14 && hours <= 18) {
text = '下午好:';
} else if (hours > 18 && hours <= 24) {
text = `晚上好:`;
}
// 返回当前时间段对应的状态
return text;
};