windows 10无法打开磁盘和文件夹 没有与之对应的应用

下载Directory、Drive、Folder后正常 File Association Fixes for Windows 10 (Defaults) Here is the list of file association fixes (Windows defaults) for some of the common file types. These fixes ar...

vuejs filter中输出html

解决方法 使用全局方法 使用 computed 属性 使用 $options.filters :inner-html.prop 使用全局方法 put your highlight into methods, and v-html="highlight(option.title)" 也可以在 Vue 上...

Better SVG Fallback and Art Direction With The Element

Besides using an SVG as a background image in CSS, you can serve SVG foreground images in HTML using one of several embedding techniques, each of which has its advantages and use cases. Unless you...

apache rewrite中文问题

RewriteRule ^star/(.*)$ phpinfo.php?a=$1 [QSA,L,B] 这条规则有些中文无法匹配,出现404问题,无法匹配的中文中包含%85,0085在ansi中为换行符,而.匹配除换行的任何字符,要换成以下这条 RewriteRule ^star/([...

Promise和Async/Await用法整理

1.Promise 1.简介 Promise,简单来说就是一个容器,里面保存着某个未来才会结束的时间(通常是一个异步操作的结果) Promise对象的基本语法: new Promise((resolve,reject) => { //..... }); 从语法上来...

CSS 或 srcset 让浏览器自动切换 1X/2X/3X 图像

现在很多客户都买高分屏的电脑,如果直接发 JPG 图给客户,会影响设计质量。为了让网站设计效果图更加真实,最近把设计提案直接做成 Web 版,模拟浏览器真实视觉效果,同时能自动识别是否为视网膜显示屏,并自动...

php汉字转拼音

include_once 'pinyin.class.php'; $zh = new ChineseSpell(); if($ishead){ return $zh->getFirstAlphaSpell($str,''); }else{ return $zh->getFullSpell($str,''); } <?php class ChineseSpell {...