会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
lambert's blog
停杯投箸不能食,拔剑四顾心茫然
首页
联系
管理
上一页
1
2
3
4
5
6
7
8
9
···
30
下一页
2023年12月25日
网页禁止复制
摘要: 一、通过 JavaScript 实现 我们可以通过 JS 代码来禁用网页的复制事件、剪切事件、选择内容事件甚至是右键菜单事件。 // 禁止右键菜单 document.oncontextmenu = function(){ return false; }; // 禁止文字选择 document.ons
阅读全文
posted @ 2023-12-25 16:44 lambertlt
阅读(237)
评论(0)
推荐(0)
2023年12月8日
vue3 引入axios 并封装下
摘要: 没有考虑取消重复请求、重复发送请求、请求缓存等情况 重复请求参考此链接 实现请求拦截 实现响应拦截 常见错误信息处理 请求头设置 api 集中式管理 index.js import axios from "axios"; import qs from "qs"; const serverConfig
阅读全文
posted @ 2023-12-08 17:04 lambertlt
阅读(170)
评论(0)
推荐(0)
2023年11月17日
vb 程序
摘要: 一到一百的累加和 递归实现 Private Sub Command1_Click() Print add(100) End Sub Function add(n As Integer) If n = 1 Then add = 1 Else add = add(n - 1) + n End If En
阅读全文
posted @ 2023-11-17 10:47 lambertlt
阅读(34)
评论(0)
推荐(0)
2023年11月13日
中职对口升学考纲专业课
摘要: 试卷内容 1. 计算机基础知识 10% 2. win7操作系统 4% 3. word 2010 4% 4. excel 2010 4% 5. power point 2010 3% 6. visual fox pro 程序设计 29% 7. visual basic 程序设计 29% 9. 计算机网
阅读全文
posted @ 2023-11-13 17:30 lambertlt
阅读(34)
评论(0)
推荐(0)
2023年11月8日
vb备课数组
摘要: 数组与记录 前面介绍的都是属于基本数据类型(字符串、整形、实型等)的数据,可以通过简单变量名来访问它们的元素。VB除基本数据类型外,还提供了复合型数据类型。复合型数据类型是按照一定规则组成的元素类型的数据。元素类型又称基类型,他可以是简单数据类型,也可以是复合数据类型。对于符合数据类型来说,不能用一
阅读全文
posted @ 2023-11-08 15:36 lambertlt
阅读(141)
评论(0)
推荐(0)
2023年11月7日
win7 安装vscode 1.70.3
摘要: 下载地址
阅读全文
posted @ 2023-11-07 16:15 lambertlt
阅读(1089)
评论(0)
推荐(0)
2023年10月19日
Qt5.14.2 学习之入门
摘要: 1 hello world #include <QtCore/QCoreApplication> // 包含一个应用程序类的头文件 #include <QDebug> //maian程序入口 argc命令行变量的数量 argv命令行变量的数组 int main(int argc, char *arg
阅读全文
posted @ 2023-10-19 00:03 lambertlt
阅读(34)
评论(0)
推荐(0)
2023年9月16日
使用 vscode 启动服务共享本地图片时快速查看图片脚本
摘要: document.querySelectorAll("a").forEach(e=>{ e.onclick=(()=>false) }) let img = document.createElement('img') let input = document.querySelector('#inpu
阅读全文
posted @ 2023-09-16 09:28 lambertlt
阅读(77)
评论(0)
推荐(0)
2023年8月9日
Mac输入 python 打开 python3
摘要: 往 `.bash_profile` 加入此配置 `echo 'alias python="python3"' >> .bash_profile` 调用 `source ~/.bash_profile` 生效配置 打开 `open .zshrc` 添加 `source ~/.bash_profile`
阅读全文
posted @ 2023-08-09 11:59 lambertlt
阅读(70)
评论(0)
推荐(0)
2023年7月27日
致远笔记
摘要: # 启动银河麒麟内的产品 1. 修改服务配置项 ``` 配置服务支持jsp热部署。 修改ApacheJetspeed\conf\web.xml,搜到此行,修改development的值为true。 development true 修改远程调用java代码端口: -Xdebug -Xrunjdwp:
阅读全文
posted @ 2023-07-27 11:01 lambertlt
阅读(142)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
9
···
30
下一页
公告