记录问题
文章平均质量分 72
超能力后裔
善始者实繁,克终者盖寡!
展开
-
问题记录-优化
在html 添加 data-ref<div data-ref="set" onclick="handle"> <div>inner</div></div>function handle(ev){ if(ev.target.dataset.ref=="handle"){ console.log("这是点击了 inner元素外面的元素") }}原创 2021-09-29 16:11:01 · 114 阅读 · 0 评论 -
javascript---时间
1.时间戳转换成时间:function timeFormate(timeStamp=new Date()) { let year = new Date(timeStamp).getFullYear(); let month =new Date(timeStamp).getMonth() + 1 < 10? "0" + (new Date(timeStamp).getMonth() + 1): new Date(timeStamp).getMonth() + 1; let date =ne原创 2021-09-22 14:36:19 · 431 阅读 · 0 评论 -
重启redis
1.cmd打开redis目录:redis-server.exe redis.windows.conf原创 2020-11-07 10:28:43 · 1791 阅读 · 0 评论