首页
AI Coding
AIDP
NEW
沸点
课程
直播
活动
APP
插件
搜索历史
清空
创作者中心
写文章
发沸点
写笔记
写代码
草稿箱
创作灵感
查看更多
登录
注册
代码工具函数
榕树下的蜗牛
创建于2023-07-14
订阅专栏
代码工具函数
暂无订阅
共4篇文章
创建于2023-07-14
订阅专栏
默认顺序
默认顺序
最早发布
最新发布
判断浏览器版本和厂商
```js router.beforeEach((to, from, next) => { if (navigator.userAgent.indexOf('WOW64') > -1) { conso
vue项目中获取body滚动距离
```js created() { window.addEventListener('scroll', this.handleScroll) } beforeDestroy() { window.re
获取当前时间
```js getCurrentTime() { // 获取当前时间并打印 let yy = new Date().getFullYear() let mm = new Date().getMonth
弹窗后禁止body滚动
```js //停止滚动 stopBodyMove() { let m = function (e) { e.preventDefault(); }; document.body.style.over