重庆熊猫 Loading

上一页 1 2 3 4 5 6 7 8 9 10 ··· 30 下一页
摘要: 更新记录 点击查看 ``` >2023年3月1日 优化内容结构,加入组件中查询内容 >2023年1月6日 更新Ext.getCmp >2022年12月3日 开始。 ``` ExtJS教程汇总:https://www.cnblogs.com/cqpanda/p/16328016.html 查询组件 E 阅读全文
posted @ 2023-01-30 08:51 重庆熊猫 阅读(243) 评论(0) 推荐(0) 编辑
摘要: 更新记录 2023年1月6日 从笔记迁移到博客。 转载请注明出处: ExtJS教程汇总:https://www.cnblogs.com/cqpanda/p/16328016.html 使用 Ext.util.Observable 类型即可。 代码实例: //定义类型 Ext.define('Myap 阅读全文
posted @ 2023-01-29 09:46 重庆熊猫 阅读(66) 评论(0) 推荐(0) 编辑
摘要: const getSelectedText = () => window.getSelection().toString(); getSelectedText(); JQuery实例: $(function(){ const getSelectedText = () => window.getSel 阅读全文
posted @ 2023-01-28 11:52 重庆熊猫 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 问题 Ubuntu22.04 x64 下运行.NET Core 3.1程序 报错: usable version of libssl was found 解决办法 wget http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.0 阅读全文
posted @ 2023-01-27 08:52 重庆熊猫 阅读(354) 评论(0) 推荐(0) 编辑
摘要: const goToTop = () => window.scrollTo(0, 0); goToTop(); 阅读全文
posted @ 2023-01-26 08:39 重庆熊猫 阅读(19) 评论(0) 推荐(0) 编辑
摘要: const randomstr = Math.random().toString(36).substring(7); 阅读全文
posted @ 2023-01-25 10:08 重庆熊猫 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 用于判断页面是否在底部 const scrolledToBottom = () => document.documentElement.clientHeight + window.scrollY >= document.documentElement.scrollHeight; scrolledTo 阅读全文
posted @ 2023-01-24 08:17 重庆熊猫 阅读(62) 评论(0) 推荐(0) 编辑
摘要: const isTabInView = () => !document.hidden; console.log(isTabInView()); 阅读全文
posted @ 2023-01-24 08:17 重庆熊猫 阅读(29) 评论(0) 推荐(0) 编辑
摘要: const showPrintDialog = () => window.print() 阅读全文
posted @ 2023-01-23 10:15 重庆熊猫 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 用于重定向到新 URL const redirect = url => location.href = url redirect("https://www.google.com/"); 阅读全文
posted @ 2023-01-23 10:15 重庆熊猫 阅读(45) 评论(0) 推荐(0) 编辑
摘要: const randomBoolean = () => Math.random() >= 0.5; randomBoolean(); 阅读全文
posted @ 2023-01-22 09:45 重庆熊猫 阅读(23) 评论(0) 推荐(0) 编辑
摘要: slmgr /skms kms.chinancce.com slmgr /ipk WX4NM-KYWYW-QJJR4-XV3QB-6VM33 slmgr /ato 阅读全文
posted @ 2023-01-22 09:44 重庆熊猫 阅读(8053) 评论(0) 推荐(0) 编辑
摘要: const shuffle = array => array.sort(() => 0.5-Math.random()); //output console.log(shuffle([1,5,2,45])); console.log(shuffle(['1','2','3','4','5'])); 阅读全文
posted @ 2023-01-21 09:02 重庆熊猫 阅读(29) 评论(0) 推荐(0) 编辑
摘要: const isDarkMode = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches; console.log(isDarkMode); 阅读全文
posted @ 2023-01-20 10:10 重庆熊猫 阅读(29) 评论(0) 推荐(0) 编辑
摘要: JavaScript 判断当前设备是否为苹果设备 const isAppleDevice = () => /Mac|iPod|iPhone|iPad/.test(navigator.platform); isAppleDevice(); 阅读全文
posted @ 2023-01-19 08:08 重庆熊猫 阅读(64) 评论(0) 推荐(0) 编辑
摘要: this.button1.Image = global::项目名.Properties.Resources.资源名; 阅读全文
posted @ 2023-01-18 10:06 重庆熊猫 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 更新记录: 2023年1月6日 从笔记迁移到博客 ExtJS教程汇总:https://www.cnblogs.com/cqpanda/p/16328016.html 转载请注明出处:https://www.cnblogs.com/cqpanda/p/17031493.html 说明 Implemen 阅读全文
posted @ 2023-01-17 11:31 重庆熊猫 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 完整过程图示 请求流程 (1)客户端向授权服务系统发起请求,申请获取“令牌”。 (2)授权服务根据用户身份,生成一张专属“令牌”,并将该“令牌”以JWT规范返回给客户端。 (3)客户端将获取到的“令牌”放到Http请求的Headers中后,向主服务系统发起请求。主服务系统收到请求后,会从Header 阅读全文
posted @ 2023-01-16 11:27 重庆熊猫 阅读(217) 评论(0) 推荐(0) 编辑
摘要: https://www.aconvert.com/cn/icon/png-to-ico/ 阅读全文
posted @ 2023-01-16 11:27 重庆熊猫 阅读(18) 评论(0) 推荐(0) 编辑
摘要: https://www.youbianku.com/%E5%A6%82%E4%BD%95%E5%BF%AB%E9%80%9F%E6%9F%A5%E8%AF%A2%E6%9F%90%E4%B8%AA%E5%9C%B0%E5%9D%80%E6%89%80%E5%B1%9E%E8%A1%97%E9%81% 阅读全文
posted @ 2023-01-16 11:27 重庆熊猫 阅读(94) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 30 下一页