会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
不支持
骑上我的小摩托
做大自然的搬运工
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
···
11
下一页
2024年4月3日
vue3 手机端 手写签字
摘要: <template> <div> <div> <canvas class="canvas" id="canvas" ref="canvas"></canvas> <canvas id="blank" style="display: none"></canvas> <p v-else style="f
阅读全文
posted @ 2024-04-03 14:50 骑上我的小摩托
阅读(361)
评论(0)
推荐(0)
2024年4月2日
vue3 点击复制
摘要: npm install clipboard --save //下载 import Clipboard from 'clipboard'//使用页面引入 js:const copyText = async () => { const text = window.location.href // 设置要
阅读全文
posted @ 2024-04-02 18:29 骑上我的小摩托
阅读(551)
评论(0)
推荐(0)
2024年3月28日
vue3 聊天室 滚动到最底下的聊天
摘要: <div ref="chatContent" class="count"> <ul> <li v-for="(i, index) in 20" :key="index"> <!-- 聊天内容 --> </li> </ul> </div> .count{ height: 外壳高度; overflow-
阅读全文
posted @ 2024-03-28 10:01 骑上我的小摩托
阅读(425)
评论(0)
推荐(0)
2024年3月18日
vue element plus上传文件类型限制
摘要: <el-upload v-model:file-list="fileList" action="地址" :before-upload="Acceps" > <el-icon><Picture /></el-icon> </el-upload> const Acceps = async (file)
阅读全文
posted @ 2024-03-18 10:46 骑上我的小摩托
阅读(908)
评论(0)
推荐(0)
2024年3月4日
哔哩哔哩动态批量删除
摘要: for(var i=0; i<$(".bili-dyn-more__menu__item").length; i++) { if($(".bili-dyn-more__menu__item")[i].getAttribute("data-type") == "THREE_POINT_DELETE")
阅读全文
posted @ 2024-03-04 18:40 骑上我的小摩托
阅读(270)
评论(0)
推荐(0)
2024年2月29日
浏览器打开小窗口
摘要: window.open(url,'_blank','top=300,left=300,width=800,height=650,menubar=no,toolbar=no,status=no,scrollbars=yes' )
阅读全文
posted @ 2024-02-29 15:25 骑上我的小摩托
阅读(20)
评论(0)
推荐(0)
2024年2月6日
判断数组中有没有这个元素中的其中一个值,如果有就删除,如果没有就push
摘要: const arr2 = [{id: 1}, {id: 2}]; const value2 = {id: 3}; const index = arr2.findIndex(object => object.id value2.id); if (index -1) { arr2.push(value2
阅读全文
posted @ 2024-02-06 09:15 骑上我的小摩托
阅读(46)
评论(0)
推荐(0)
2024年2月1日
手动查看键盘按键事件
摘要: 一、查看所有键 document.onkeydown = function (event) { console.log('按下:' + event.key + '键:' + event.keyCode) } document.onkeydown = function (event) { if (ev
阅读全文
posted @ 2024-02-01 13:51 骑上我的小摩托
阅读(50)
评论(0)
推荐(0)
2024年1月18日
刷新页面背景图随机的方法
摘要: // 随机数函数function getRandom(N,M)ireturn Math.floor(Math.random()*(M-N+1))+ N // 随机数 const random=getRandom(1,10) document.body.style.backgroundImage =`
阅读全文
posted @ 2024-01-18 11:58 骑上我的小摩托
阅读(33)
评论(0)
推荐(0)
2024年1月9日
getUserMedia 报错原因 爬坑
摘要: navigator.mediaDevices在目前以下三种情况下可以不报错 1. 地址为localhost:// 访问时 2. 地址为https:// 时 3. 为文件访问file:///
阅读全文
posted @ 2024-01-09 17:03 骑上我的小摩托
阅读(204)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
···
11
下一页
公告