摘要:
更新记录 2023年1月6日 从笔记迁移到博客。 转载请注明出处: ExtJS教程汇总:https://www.cnblogs.com/cqpanda/p/16328016.html 使用 Ext.util.Observable 类型即可。 代码实例: //定义类型 Ext.define('Myap 阅读全文
摘要:
const getSelectedText = () => window.getSelection().toString(); getSelectedText(); JQuery实例: $(function(){ const getSelectedText = () => window.getSel 阅读全文
摘要:
问题 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 阅读全文
摘要:
const goToTop = () => window.scrollTo(0, 0); goToTop(); 阅读全文
摘要:
const randomstr = Math.random().toString(36).substring(7); 阅读全文
摘要:
用于判断页面是否在底部 const scrolledToBottom = () => document.documentElement.clientHeight + window.scrollY >= document.documentElement.scrollHeight; scrolledTo 阅读全文
摘要:
const isTabInView = () => !document.hidden; console.log(isTabInView()); 阅读全文
摘要:
const showPrintDialog = () => window.print() 阅读全文
摘要:
用于重定向到新 URL const redirect = url => location.href = url redirect("https://www.google.com/"); 阅读全文
摘要:
const randomBoolean = () => Math.random() >= 0.5; randomBoolean(); 阅读全文
摘要:
slmgr /skms kms.chinancce.com slmgr /ipk WX4NM-KYWYW-QJJR4-XV3QB-6VM33 slmgr /ato 阅读全文
摘要:
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'])); 阅读全文
摘要:
const isDarkMode = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches; console.log(isDarkMode); 阅读全文
摘要:
JavaScript 判断当前设备是否为苹果设备 const isAppleDevice = () => /Mac|iPod|iPhone|iPad/.test(navigator.platform); isAppleDevice(); 阅读全文
摘要:
this.button1.Image = global::项目名.Properties.Resources.资源名; 阅读全文
摘要:
更新记录: 2023年1月6日 从笔记迁移到博客 ExtJS教程汇总:https://www.cnblogs.com/cqpanda/p/16328016.html 转载请注明出处:https://www.cnblogs.com/cqpanda/p/17031493.html 说明 Implemen 阅读全文
摘要:
完整过程图示 请求流程 (1)客户端向授权服务系统发起请求,申请获取“令牌”。 (2)授权服务根据用户身份,生成一张专属“令牌”,并将该“令牌”以JWT规范返回给客户端。 (3)客户端将获取到的“令牌”放到Http请求的Headers中后,向主服务系统发起请求。主服务系统收到请求后,会从Header 阅读全文
摘要:
https://www.aconvert.com/cn/icon/png-to-ico/ 阅读全文
摘要:
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% 阅读全文
摘要:
加入命名空间 using DevExpress.LookAndFeel; 设置主题 UserLookAndFeel.Default.SetSkinStyle(SkinStyle.Office2019Colorful); 阅读全文