摘要: 程序员接单,在线接单,开发,毕业设计,私活 阅读全文
posted @ 2021-12-25 23:11 喜葵 阅读(690) 评论(0) 推荐(0) 编辑
摘要: 一、作用: 创建类似与v-for、v-on的指令;本文以图片的懒加载为例 注册函数: app.directive(key, directive); 二、vue3自定义指令钩子函数 created:在绑定元素的 attribute 或事件监听器被应用之前调用。在指令需要附加在普通的 v-on 事件监听 阅读全文
posted @ 2024-06-12 10:38 喜葵 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 无法加载文件 C:\Program Files\nodejs\pnpm.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.micros 原因:现用执行策略是 Restricted(默认设置)解决方法: 1、使用管理员的身份打开powershell, win + x2、输入 阅读全文
posted @ 2024-05-20 15:04 喜葵 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 问题:用html2canvas生成画布图片,再转成pdf。生成图片时内容结构里的图片显示空白。 解决: 首先服务器设置图片允许跨域,如阿里云腾讯云配置跨域规则。其次图片设置crossOrigin=“anonymous”,并且拿到图片地址加随机参数如 src +‘?v=’ + Math.random( 阅读全文
posted @ 2024-03-20 14:34 喜葵 阅读(1716) 评论(0) 推荐(0) 编辑
摘要: const json = {};//JSON数据 const form = document.createElement("form"); form.setAttribute("method", "POST"); form.setAttribute("action", "apiUrl"); // 提 阅读全文
posted @ 2024-03-08 14:59 喜葵 阅读(98) 评论(0) 推荐(0) 编辑
摘要: <template> <view class="tab"> <view class="item" :class="{'ac':active == 1}" @click="active = 1">item1</view> <view class="item" :class="{'ac':active 阅读全文
posted @ 2023-10-26 16:56 喜葵 阅读(477) 评论(0) 推荐(0) 编辑
摘要: 1、只能输入正整数 <input name="columnValue" class="input96 required" type="text" size="50" onkeyup="if(this.value.length==1){this.value=this.value.replace(/[^ 阅读全文
posted @ 2023-07-03 10:34 喜葵 阅读(706) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-06-16 15:13 喜葵 阅读(31) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>水印</title> <style> #water-div{pointer-events:none;position:fixed;top:0;left:0;right:0;bott 阅读全文
posted @ 2023-05-31 17:28 喜葵 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 1,下载( 安装包和破解jar包的) 链接: https://pan.baidu.com/s/1rMbtpYRjwMOR2wxzL-32zA?pwd=cccc 提取码: cccc 2,安装: 傻瓜式安装,一路Next 接着Next,选择安装路径。路径要记牢哦,后面会用到 .耐心等待安装 ok,到这里 阅读全文
posted @ 2023-05-24 09:28 喜葵 阅读(1273) 评论(0) 推荐(0) 编辑
摘要: 简介 本文整理介绍 Chrome DevTools Performance 面板的所有功能,以便使用其分析页面加载时/运行时性能,找出性能瓶颈。 本人通常每周都会写文章,但直接粘贴搬运到这里总有很多错乱,逐一检查调整很是繁琐,若文章对你有所帮助,劳烦点赞关注支持一下,我也有动力更新更多内容。若内容存 阅读全文
posted @ 2023-04-10 11:41 喜葵 阅读(307) 评论(0) 推荐(0) 编辑